WordPressのthe_excerptで「抜粋」に登録されたテキストを表示する際に、<p>タグを除去する方法のご紹介です。
「抜粋」表示の際に<p>タグを除去
抜粋に入力されたテキストを<p>を外して表示する場合は、ご利用のテーマ内のfunctions.phpに以下のコードを追加しておきます。
1 |
remove_filter('the_excerpt', 'wpautop'); |
get_the_excerptを利用
1 |
<?php echo get_the_excerpt(); ?> |
コメント