ワードプレスの投稿画面、ビジュアルエディターから見出し(h1,h2)削除する方法
functions.phpに以下を記述すればOK!
function custom_editor_settings( $initArray ) {
$initArray[‘block_formats’] = ‘Paragraph=p;Address=address;Pre=pre;Heading 3=h3;Heading 4=h4;Heading 5=h5;Heading 6=h6’;
return $initArray;
}
add_filter( ‘tiny_mce_before_init’, ‘custom_editor_settings’ );
関連記事はこちら!
スポンサーリンク