投稿・固定ページのカスタマイズ
投稿・固定ページの項目を非表示にする方法です。
function remove_post_supports() {
remove_post_type_support( 'post', 'comments' ); // コメント
remove_post_type_support( 'post', 'trackbacks' ); // トラックバック
remove_post_type_support( 'post', 'revisions' ); // リビジョン
remove_post_type_support( 'post', 'author' ); // 作成者
remove_post_type_support( 'post', 'custom-fields' ); // カスタムフィールド
remove_post_type_support( 'post', 'excerpt' ); // 抜粋
unregister_taxonomy_for_object_type( 'post_tag', 'post' ); // タグ
remove_post_type_support( 'page', 'revisions' ); // リビジョン
remove_post_type_support( 'page', 'custom-fields' ); // カスタムフィールド
remove_post_type_support( 'page', 'comments' ); // コメント
}
add_action( 'init', 'remove_post_supports' );