カスタム投稿タイプを指定して本文を非表示にする方法。functions.phpに以下を追記します。
function my_remove_post_support() {
remove_post_type_support('posttype','editor');
}
add_action( 'init' , 'my_remove_post_support' );
‘posttype‘の部分に投稿タイプを指定することで、投稿タイプ別の設定が可能です。
カスタム投稿タイプを指定して本文を非表示にする方法。functions.phpに以下を追記します。
function my_remove_post_support() {
remove_post_type_support('posttype','editor');
}
add_action( 'init' , 'my_remove_post_support' );
‘posttype‘の部分に投稿タイプを指定することで、投稿タイプ別の設定が可能です。
コメント