add_filter('the_content', 'disable_wpautop_for_lp_113307', 9); function disable_wpautop_for_lp_113307($content) { if (is_page(113307)) { remove_filter('the_content', 'wpautop'); remove_filter('the_content', 'wptexturize'); } return $content; } add_action('wp', function() { if (is_page(113307)) { // the_content 系 remove_filter('the_content', 'wpautop'); remove_filter('the_content', 'wptexturize'); // 抜粋系 remove_filter('the_excerpt', 'wpautop'); remove_filter('the_excerpt', 'wptexturize'); // ショートコード内部 remove_filter('the_content', 'shortcode_unautop'); // ウィジェット系 remove_filter('widget_text_content', 'wpautop'); remove_filter('widget_text_content', 'wptexturize'); // ACF やテーマ独自フィルター対策 remove_filter('acf_the_content', 'wpautop'); remove_filter('acf_the_content', 'wptexturize'); } });