多标签搜索WordPress

时间:2013-07-23 21:51:39

标签: wordpress search tags

Wordpress 3.5.2。 像

这样的旧建筑
?tag=tag1+tag2

不再工作了。我不知道为什么。 我有一个带复选框的表格。和按类别排序的标签。 所以我想搜索

tag1+tag2+tag3

特定类别。 怎么做? 我很累,寻找解决方案:(

1 个答案:

答案 0 :(得分:1)

逗号将它们分开:

/** posts with any of the following tags */   
$query = new WP_Query( 'tag=bread,baking' );

/** posts with all of the following tags */
$query = new WP_Query( 'tag=bread+baking+recipe' );

/** or alternatively */
$query = new WP_Query( array( 'tag_slug__in' => array( 'bread', 'baking' ) ) );

此处记录:http://codex.wordpress.org/Class_Reference/WP_Query