我知道以前有人问过:1,2。但我在看文件时发现这是可能的。
我需要在google自定义搜索引擎的查询中添加多个优化。因此,如果我的cse上有多个标签,我想以某种方式查询其中的一个子集。假设我有三个标签:news
,articles
和stories
。我希望能够在earth
或news
中包含的所有页面中搜索类似stories
的查询。
对于只添加一个标签,这样的查询可以正常工作:earth more:news
。但不喜欢我加第二个标签。
根据google's documentation,您可以在多个细化之间使用OR
。但这对我不起作用。我正在使用javascript and the RESTful APIs但我尝试了许多组合:earth more:news more:stories
earth more:news OR more:stories
earth [more:news OR more:stories]
earth more:news,stories
有人知道它是怎么工作的吗?
最佳答案
似乎AND
和OR
选项仅适用于pagemap数据和元标记,它们不适用于目录结构和标签。
关于seo - 在Google CSE中搜索多个标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30035976/