我是树枝的新手,我希望通过在索引页面上选择的博客标签显示来自工艺cms的所有文章。
我在索引页面上的for每个循环都有一个显示所有文章的信息,但是我只想显示带有特定标签的文章,这些标签已添加到Craft cms中。
答案 0 :(得分:0)
查询博客帖子时只需使用.relatedTo()
。就像魔术。
https://docs.craftcms.com/v3/relations.html#the-relatedto-parameter
例如:
{% set category = entry.blogCategory.one() %} // this will be the field name of your tag
{% set posts = craft.entries()
.section('blogPosts') // the name of your section
.relatedTo(category) // the category object
%}