😊
[wordpress] 不要な機能の削除
functions
// 投稿機能
function remove_post_item() {
remove_post_type_support('post','author'); // 作成者
remove_post_type_support('post','excerpt'); // 抜粋
remove_post_type_support('post','trackbacks'); // トラックバック
remove_post_type_support('post','custom-fields'); // カスタムフィールド
remove_post_type_support('post','tag'); // タグ
remove_post_type_support('post','comments'); // コメント
remove_post_type_support('post','revisions'); // リビジョン
remove_post_type_support('post','page-attributes'); // 表示順
remove_post_type_support('post','post-formats'); // 投稿フォーマット
}
add_action('init','remove_post_item');
Discussion