我想创建一个搜索页面,它应该只列出 statamic 中的条目。
我的代码是
{{ search:results index="default" }}
{{ if no_results }}
<h2>No results found for {{ get:q }}.</h2>
{{ else }}
<a href="{{ url }}">
<h2>{{ title }}</h2>
<p>{{ description | truncate:180 }}</p>
</a>
{{ /if }}
{{ /search:results }}
结果来了
在此代码中,它加载条目,分类结果中的所有内容
预期结果
它应该只加载集合中的条目
注意:我尝试过使用 {{entries}} {{/entries}},但没有成功