![](https://firedrop.jp/wp/wp-content/themes/cocoon-master/images/no-image-320.png)
自動整形を無効化
自動整形を無効化するにはfunctions.phpに記述する functions.phpに次の形式で記述することで、自動整形を無効化することができます。 <?php // 記事の自動整形を無効化 remove_filter('the_content', 'wpautop'); // 抜粋の自動整形を無効化 remove_filter('the_excerpt', 'wpautop'); ?> これで、テーマファイル内の”the_contetnt”、”the_excerp...