お使いのテーマのfunctions.phpに下記のコードを書くだけです。 //投稿エディタ内のh1h2排除 function custom_editor_settings( $initArray ){ $initArray['theme_advanced_blockformats'] = 'p,address,pre,code,h3,h4,h5,h6'; return $initArray; } add_filter( 'tiny_mce_before_init', 'custom_editor_settings' ); 以上、ビジュアルエディタの「見出し1、見出し2」を省く方法でした。