WordPress - 2017-10-05

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' );
Related Posts

Related Posts

WordPressの投稿画面カスタマイズ-必須項目設定

2017-10-05

WordPressのカスタムフィールドやカテゴリを検索対象に含める方法

2018-02-07

WordPressの管理画面カスタマイズ-管理画面メニュー

2017-10-20

WordPressの管理画面カスタマイズ-ダッシュボード

2017-10-05