这将取决于您的主题是如何为单个模板构建模板的。php(个人帖子视图),但我将向您展示要查找的内容以及如何通过CSS应用。
因此,从我正在研究的主题来看,这就是文章中包含的类别:<article id="post-3417" class="post-3417 post type-post status-publish format-standard hentry category-plus">
.
中的最后一个类<article>
元素为category-plus
. 所以我想针对这一点。
我的CSS将如下所示:
article.category-plus > header.entry-header > .entry-title:before {
content: url(\'wp-content/uploads/2020/05/C-Plus.png\');
display: block;
float: right;
margin-right: 10px;
width: 1em;
height: 1em;
}
您必须检查要将其添加到其中一个页面的源代码(因为您的主题与我当前正在处理的主题不同,所以它可能具有不同的设置),找到它在条目中指定类别的位置,然后使用该信息正确构造CSS选择器。
您可以根据需要调整大小、位置等,但这比在functions.php
包含单个CSS样式规则。