更具体一点:我有一些帖子必须与类别页面上的其他帖子看起来不同。找不到任何解决方案。
答案 0 :(得分:0)
您可以使用tags
作为示例。
在帖子中添加一些特定标记。然后,在模板中使用条件来显示您想要的任何内容:
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ' ';
}
}
请参阅wordpress doc here了解代码
请记住,他们还有其他几种方法可以做到这一点!