有几个帖子类似这个问题,但我仍然需要寻求帮助。。。
如果在菜单中选择了存档帖子页面,则需要更改帖子的列标题(标题中通常显示“突出显示的帖子”)
此屏幕截图对此进行了说明;请注意,唯一的区别是::before::after元素中的文本:
下面是我的子主题函数中的代码。php文件:
function register_arch_posts_stylesheet() {
wp_register_style( \'arch-post-stylesheet\', get_stylesheet_directory_uri() . \'/arch-post-stylesheet.css\' );
}
add_action( \'init\', \'register_arch_posts_stylesheet\' );
function arch_posts_conditionally_enqueue_the_stylesheet() {
// only enqueue on archived-posts page
if ( is_page( \'archived-posts\' ) ) {
wp_enqueue_style( \'arch-post-stylesheet\' );
}
}
add_action( \'wp_enqueue_scripts\', \'arch_posts_conditionally_enqueue_the_stylesheet\' );
这里是CSS-in-file-arch-post样式表。css:
.coolwp-posts-heading::after {
content: "Archived Posts";
}
但当我加载归档帖子页面时,什么都没有发生;如何验证样式表正在加载,如果正在加载,CSS是否正常工作?TIA。。。。