如何清理管理列

时间:2017-01-29 作者:EnglishTeacherEric

随着激活插件数量的增加,许多管理栏变得如此混乱,以至于很难读取名称的内容并修改它们。有没有办法解决这个问题?

Admin columns

1 个回复
最合适的回答,由SO网友:Dave Romsey 整理而成

使用屏幕选项菜单可以显示/隐藏管理列。这里,使用UI隐藏自定义列标题新闻:

Toggle admin columns

或者,可以通过编程方式取消设置(因此隐藏)管理列:

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;
}