WordPressの管理画面の投稿一覧では、通常、以下のカラムが表示されています。
- タイトル
- 作成者
- カテゴリー
- タグ
- コメント
- 日付
これらのうち、必要ない項目を非表示にする方法を紹介します。
functions.php で制御する
使用しているテーマファイル内の「functions.php」に以下のコードを記述します。
function customize_manage_posts_columns($columns) { unset($columns['author']); // 作成者カラムの削除 unset($columns['categories']); // カテゴリーカラムの削除 unset($columns['tags']); // タグカラムの削除 unset($columns['comments']); // コメントカラムの削除 unset($columns['date']); // 日付カラムの削除 return $columns; } add_filter( 'manage_posts_columns', 'customize_manage_posts_columns' );
ぜひお試しください。