wordpressでpタグを入れない
wordpressで自動挿入される
を入らなくする方法
wp-includes配下のdefault-filters.php
以下をの行をコメントアウトする。
add_filter(’the_content’, ‘wpautop’);
pタグがoffになるので、
タグを自分でいれる必要がある。
wordpressで自動挿入される
を入らなくする方法
wp-includes配下のdefault-filters.php
以下をの行をコメントアウトする。
add_filter(’the_content’, ‘wpautop’);
pタグがoffになるので、
タグを自分でいれる必要がある。