To change the color of password protected post titles in the admin
在您的主题或子主题中,将样式表排队以加载到管理中,然后添加一些简单的CSS以使用为受密码保护的帖子提供的类更改颜色。
在主题的功能中。php。。。
function wpse_admin_styles(){
wp_enqueue_style(
\'admin_css\',
get_stylesheet_directory_uri() . \'/css/admin-styles.css\', array(), filemtime( get_stylesheet_directory() . \'/css/admin-styles.css\')
);
}
add_action(\'admin_enqueue_scripts\', \'wpse_admin_styles\');
创建
css
目录中,添加管理样式。css并粘贴在以下css中。。。
.post-password-required .row-title {
color: red;
}
To change the color of password protected post titles on the frontend
在主题或子主题中,将以下内容添加到CSS文件中,或直接添加到
Appearance > Customize > Additional CSS
. 它使用添加到文章标记的类。
.post-password-required .entry-title {
color: red;
}
注意-这可能因主题而异,但应该会给你一个很好的方法。