テーマの、functions.phpに記述します。
class Michael_Ecklunds_Admin_Customizer2 {
function __construct() {
add_action( 'manage_pages_columns', array( $this, 'manage_columns' ) );
add_action( 'manage_posts_columns', array( $this, 'manage_columns' ), 10, 2 );
}
function manage_columns( $columns, $post_type= 'page' ) { //2nd param not passed for pages
if ( in_array( $post_type, array( 'post', 'page' ) ) ) {
// This is only for posts and pages, 'if (in_array(...))' just illustrates how.
unset( $columns['comments'] );
}
return $columns;
}
}
new Michael_Ecklunds_Admin_Customizer2();
クラスをつかって、一連のフィルタ処理をまとめる