在我的网站中有两种自定义帖子类型,一种是广告客户&第二个是事件,我将这两个CPT显示显示为一个滑块,而不是仅图像内容。
在我的项目中创建了2个CPT, 1)广告商2)读者 我将这两个CPT内容合并为一个滑块
答案 0 :(得分:0)
<?php
// The Query
$queryslider= new WP_Query(array( 'post_type' => array( 'Advertiser', 'Reader' ), ));
query_posts( $queryslider);
// The Loop
while ( $queryslider->have_posts() ) : $queryslider->the_post();
echo '<li class="slide">';
the_title();
/* and other content what you want */
echo '</li>';
endwhile;
// Reset Query
wp_reset_query();
?>
祝你好运! :)