我有一个幻灯片自定义帖子类型,我需要能够为这个自定义帖子类型的选定标签创建一个查询,这样我就可以创建一组这些自定义滑块帖子类型显示在滑块中。到目前为止,我无法弄明白。
答案 0 :(得分:1)
你可以试试这个
$query = new WP_Query(array(
"post_type" => "yourposttype",
"tag" => "yourtagName"
));
while ($query->have_posts()) : $query->the_post();
//code goes here
endwhile;
答案 1 :(得分:0)
尝试此查询
<?php
$args = array(
'post_type'=> 'music',
'musician' => 'Adele, Avril Lavigne',
'order' => 'ASC'
);
query_posts( $args );
while (have_posts()) : the_post(); ?>
将“music”更改为您的post_type名称,将“musician”更改为您的分类名称,将“adele”更改为您的类别名称