我正试图通过cat和标签获得一些帖子。这是我目前得到的,但不工作。
任何帮助,这将是伟大的…
$pots = new WP_Query(array('cat' => array (591),
'tax_query' => array(
array(
'taxonomy' => 'post_tag',
'field' => 'name',
'terms' => array('my tag', 'my tag2'),
),
),
'posts_type' => 'post',
'showposts' => 32,
'paged' => $paged,
'order' => 'desc',
'post__not_in' => get_option( 'sticky_posts' ),
));
我认为一切都很好,只是关于标签,我认为我应该像我的代码那样使用段符而不是名称
$pots = new WP_Query(
array(
'cat' => array(591),
'tax_query' => array(
array(
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => array('my_tag', 'my_tag2'),
'operator' => 'AND',
),
),
'posts_type' => 'post',
'showposts' => 32,
'paged' => $paged,
'order' => 'desc',
'post__not_in' => get_option('sticky_posts'),
)
);