[WordPress]投稿ページのエディタを非表示

WordPress
スポンサーリンク

目次

functions.php

add_action( 'init' , 'my_remove_post_editor_support' );
function my_remove_post_editor_support() {
 remove_post_type_support( 'post', 'editor' );
}

コメント

タイトルとURLをコピーしました