@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\' );