使用屏幕选项菜单可以显示/隐藏管理列。这里,使用UI隐藏自定义列标题新闻:
或者,可以通过编程方式取消设置(因此隐藏)管理列:
add_filter( \'manage_post_posts_columns\', \'wpse_hide_columns\', PHP_INT_MAX, 1 );
function wpse_hide_columns( $columns ) {
// Check for the name of the column, and unset it if it exits.
if ( isset( $columns[\'headline_news\'] ) ) {
unset( $columns[\'headline_news\'] );
}
return $columns;
}