WordPressのクラシックエディターでpタグのみ削除してbrタグを残す

the_contentフィルターフックに予め登録されているwpautop関数を削除して、PHPのnl2br関数を登録します。

remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'nl2br' );

コメント