3

WordPress 3.5.2。老建筑喜欢

?tag=tag1+tag2

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

tag1+tag2+tag3

在特定类别中。怎么做?我厌倦了寻找解决方案:(

4

1 回答 1

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

于 2013-07-24T01:18:44.980 回答