下面是如何在提要上使用内置公共查询参数:
Query parameter: s
我们可以使用
s
提要上的查询参数:
https://example.com/feed/?s=KEYWORD
这将为所有可搜索的帖子类型生成关键字提要。
Query parameter: post_type
我们可以通过以下方式将其限制为给定的帖子类型:
https://example.com/feed/?s=KEYWORD&post_type=post
Query parameter: exact
我们还可以使用
exact
查询搜索参数以精确匹配搜索关键字(无通配符):
https://example.com/feed/?s=hello+world&post_type=post&exact=1
Query parameter: sentence
这个
sentence
查询搜索参数可用于匹配整个关键字句子(无分词):
https://example.com/feed/?s=hello+world&post_type=post&sentence=1
All together:
https://example.com/feed/?s=hello+world&post_type=post&exact=1&sentence=1