Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,如果我用 wordpress 建立了一个工作委员会,我正在搜索“营销”,但我想删除所有带有“仅佣金”的结果
为搜索功能编写您自己的查询。您可以在 SQL 中使用 LIKE 条件:
SELECT * FROM table WHERE tag = 'marketing' and category not like 'commission only'