在仪表板中隐藏某些面板

时间:2014-09-11 作者:drake035

我想在仪表板中隐藏某些面板,例如Excerpt 面板此元数据库具有id 属于postexcerpt.

简单地添加一些CSS规则是一个好主意吗#postexcerpt { display: none } 在管理员的CSS中?或者这会导致潜在的问题吗?

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

@joesk不太正确。如果您只想在后期编辑屏幕上隐藏一两个元框,可以通过大多数屏幕顶部的屏幕选项选项卡来实现。

如果这不符合您的个人喜好,并且您想完全取消编辑摘录的功能,那么您有两种选择:

1) Remove the \'excerpt\' support from your post type:

/**
 * Remove \'excerpt\' support from the \'post\' post type.
 */
function wpdocs_remove_posts_excerpt_support() {
    remove_post_type_support( \'post\', \'excerpt\' );
}
add_action( \'admin_init\', \'wpdocs_remove_posts_excerpt_support\' );

2) Remove the meta box (retaining post type support):

/**
 * Remove the Excerpt meta box from the \'post\' editing screen.
 * 
 * This does not remove the \'excerpt\' post type support, simply hides the meta box for all.
 */
function wpdocs_remove_excerpt_meta_box() {
    remove_meta_box( \'postexcerpt\', \'post\', \'normal\' );
}
add_action( \'add_meta_boxes\', \'wpdocs_remove_excerpt_meta_box\' );

结束