Advanced Custom Fields のpタグを削除

2022年8月16日

以下のコードをfunctions.phpに追加する。

//ACFのpタグ削除
function acf_remove_wpautop() {
    remove_filter('acf_the_content', 'wpautop' );
}
add_action('acf/init', 'acf_remove_wpautop');
PAGE TOP