web-dev-qa-db-ja.com

wP_Queryを使用したタグ検索

タグforest gumpの付いた記事のみを検索する必要があります。私は試してみました:new WP_Query('tag=forest+gump');new WP_Query('tag=forest gump');。ただし、両方ともforest gumpタグ付きの投稿だけでなく、すべての投稿を返します。ただし、単一のタグ(スペースなし)は問題なく機能します。代わりのもの(普通のSQLのような)も同様にうまくいくでしょう。

エントリータグ行はforest gump, forrest gump, questendです。

2
Gajus
new WP_Query(array('tag_slug__in' => array('forrest-gump', 'forest-gump', 'questend')));

new WP_Query('tag=forrest+gump,forest+gump,questend');も動作するはずです...

4
onetrickpony