我需要搜索特定标签的列表,然后我找到了docs。列表标签endpoint有一个搜索参数,但我不知道如何使用它。是否可以通过一个特定标签进行搜索?或者我可以指定几个标签,如search = tag1 + tag2?感谢。
答案 0 :(得分:0)
我在这里找到了一个例子,你可以参考这个https://wordpress.stackexchange.com/questions/180137/retrieving-pages-with-multiple-tags-using-rest-api
正如Op建议你可以尝试以下方法来传递多个标签
L1和L2和L3;使用加号(+)
https://example.com/cms/wp-json/pages?filter[tag]=L1+L2+L3
L1 OR L2 OR L3;使用逗号(,)
https://example.com/cms/wp-json/pages?filter[tag]=L1,L2,L3