そらそうや。functionsに記事本文しか追記してなかった。
[php]
// 記事本文の不要なbrやpを削除する
// WordPressの自動整形(ビジュアルエディタ含む)を無効にする方法 – Qiita
// http://qiita.com/jyokyoku/items/c560b0d1eacc1df61620
remove_filter( ‘the_content’, ‘wpautop’ );
remove_filter( ‘the_content’, ‘wptexturize’ );
// Removing Paragraph Tags from WYSIWYG Fields? – ACF Support
// https://support.advancedcustomfields.com/forums/topic/removing-paragraph-tags-from-wysiwyg-fields/
remove_filter (‘acf_the_content’, ‘wpautop’);
remove_filter (‘acf_the_content’, ‘wptexturize’);
[/php]
コメントを残す