【課題点】
Wordpressのfunctions.phpが効かずに困っております。
【詳細情報】
テーマ
habakiri
(※)今回変更したい箇所はhabakiriの子テーマのfunctions.phpになります。
habakiri-child: functions.php (modules/functions.php)
<使用エディタ>
Classic Editor
<参考にしたブログURL>
すみません。半年以上前のこともあり、こちらに関しては見つけられておりません
【やりたいこと】
function.phpに
以下の要素を追加したいと考えております。
<WordPressの自動整形を無効にする>
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
<functions.php>
php
1[php] <?php 2add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ ); 3function theme_enqueue_styles() { 4wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ ); 5wp_enqueue_style( ‘child-style’, 6get_stylesheet_directory_uri() . ‘/style.css’, 7array(‘parent-style’) 8); 9} 10[/php]
(※)子テーマを作成する時は、この記述をfunction.phpに入れなさいとブログに書いてある通りそのまま
記入したコードになります。
<functions.phpにタグを追加してみる>
php
1[php] <?php 2add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ ); 3function theme_enqueue_styles() { 4wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ ); 5wp_enqueue_style( ‘child-style’, 6get_stylesheet_directory_uri() . ‘/style.css’, 7array(‘parent-style’) 8); 9remove_filter( 'the_content', 'wpautop' ); 10remove_filter( 'the_excerpt', 'wpautop' ); 11} 12[/php]
<(修正反映functions.php>
・クォーテーションの記述を変更
・[php][/php]を消去
php
1<?php 2add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); 3function theme_enqueue_styles() { 4wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); 5wp_enqueue_style( 'child-style', 6get_stylesheet_directory_uri() . '/style.css', 7array('parent-style') 8); 9remove_filter( 'the_content', 'wpautop' ); 10remove_filter( 'the_excerpt', 'wpautop' ); 11} 12
※コード内のクォーテーションを全て変更いたしましたが、
全ての文字が真っ赤になりました。これは何か間違えているって表示ですかね?
もしかしてクォーテーションの正誤逆ですか?
<結果>
woautop(自動整形の無効化が確認できず)
まったくなにも変わらず困っております。
<疑問点>
どうすれば、functions.phpに対して追加したコードが機能するでしょうか?
追加したいコードの記述する位置が違うのでしょうか?
お手数をおかけいたしますがご教示いただけますと幸いです。
何卒よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー