0
我想弄清楚禁用4種自定義帖子類型中wpautop的最佳方法。在多個自定義帖子類型中禁用wpautop
我使用的這個片段:
add_filter('the_content', 'wp1_remove_autop_for_posttype', 0);
function wp1_remove_autop_for_posttype($content)
{
'esh' === get_post_type() && remove_filter('the_content', 'wpautop');
return $content;
}
我還需要將其刪除名爲菜單,運,外部自定義文章類型。我只是複製並粘貼這個並更改函數名稱或有更清晰的方法來做到這一點?
智慧賞識!謝謝!