WordPressの管理画面カスタマイズ-投稿・固定ページ

投稿・固定ページのカスタマイズ

投稿・固定ページの項目を非表示にする方法です。

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' );
PHP

read next