我目前正在做一个个人项目,这个页面基本上有两个选项卡,每个选项卡都会在一个名为网络研讨会的自定义帖子类型下显示特定类别的存档。
我正在使用其中一个选项卡中调用类别
<?php query_posts('category_name=demos-on-demand-videos'); ?>
但是,当我这样做时,我只是得到了找不到帖子的屏幕,我做错了什么?我正在尝试显示来自网络研讨会自定义帖子类型下的 demos-on-demand-videos 类别的帖子存档。
为每个选项卡制作一个页面模板,并在其中使用此自定义循环。确保根据您的特定帖子类型、分类或术语对其进行调整。
<?php $args=array(
'post_type' => 'webinar', //set the post_type to use.
'taxonomy' => 'demos-on-demand-videos', // set the taxonomy to use.
'term' => 'term1', //set which term to use or comment out if not using.
'posts_per_page' => 10 // how many posts or comment out for all.
);
$webinarloop = new WP_Query($args);
if($webinarloop->have_posts()) : while($webinarloop->have_posts()) :
$webinarloop->the_post();
get_template_part( 'content' ); //or whatever method you use for displaying your content.
endwhile; endif; //end the custom post_type loop
?>
这段代码对我来说很好
* x 是您创建的分类名称 * y 是类别 slug
$args = array('post_type' => 'client','posts_per_page'=>'8','order'=>'DESC','x'=>'y');
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
用这个
query_posts( array( 'post_type' => 'webinar','your-custom-taxnomy' => 'demos-on-demand-videos' ) );
while ( have_posts() ) :
the_post();
$post_id = $post->ID;
endwhile;