如何删除屏幕选项下的摘录复选框

时间:2017-10-09 作者:Stephen Sabatini

关于How to Display Post Excerpts in Admin by Default?, 我们如何完全删除屏幕选项下的摘录复选框以获得完整的解决方案?

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

您可以使用CSS实现这一点。

.metabox-prefs label[for="postexcerpt-hide"] { 
    display: none; 
}

In regard to adding the CSS to the admin section, you have two options:

选项1:将CSS添加到样式表中,并使用admin_enqueue_scripts

function load_custom_wp_admin_style() {
  wp_register_style( \'custom_wp_admin_css\', get_template_directory_uri() . \'/admin-style.css\', false, \'1.0.0\' );
  wp_enqueue_style( \'custom_wp_admin_css\' );
}
add_action( \'admin_enqueue_scripts\', \'load_custom_wp_admin_style\' );
选项2:使用admin_head

function remove_post_excerpt_checkbox() {
  ?>
    <style>
      .metabox-prefs label[for="postexcerpt-hide"] { 
        display: none; 
      }
    </style>
  <?php
}
add_action( \'admin_head\', \'remove_post_excerpt_checkbox\' );

结束

相关推荐

带有Bootstrap的WordPress上的网格发布页面,the_excerpt();问题

我试图在WordPress上创建一个包含我所有帖子的网格页面。直到我添加the_excerpt(); 我的职位。电网变得一团糟。行不再正确。这就是我没有的the_excerpt();:这就是the_excerpt();:这里是我的页面代码。php:<?php /* Template Name: Blog-3 */ ?> <?php get_header(); ?> <div> <div clas