我有一个幻灯片自定义帖子类型,我需要能够为此自定义帖子类型的选定标签创建查询,以便我可以创建一组这些自定义滑块帖子类型以显示在滑块中。到目前为止,我无法弄清楚。
问问题
761 次
2 回答
1
你可以试试这个
$query = new WP_Query(array(
"post_type" => "yourposttype",
"tag" => "yourtagName"
));
while ($query->have_posts()) : $query->the_post();
//code goes here
endwhile;
于 2012-10-16T03:59:30.243 回答
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”更改为您的类别名称
于 2012-10-16T03:58:34.487 回答