WordPressの自動挿入されるpタグを削除する

個別に削除する場合は

<?php remove_filter('the_content', 'wpautop'); ?>

をいれる。


まとめてならfunction.phpに

remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );


ネタ元