【WP管理画面カスタム】固定ページだけ自動整形をしたくないの
2018/11/12
お客様が使う「投稿ページ」、私たちが使う「固定ページ」で分けたら
絶対必要だよね?
鉄板カスタム。
// 固定ページの自動整形を無効にする
function disable_page_wpautop() {
if ( is_page() )
remove_filter( 'the_content', 'wptexturize' );
remove_filter( 'the_content', 'wpautop' );
}
add_action( 'wp', 'disable_page_wpautop' );