您好,我想创建一个单独的存档页面,在这里,单击按钮即可显示每个自定义帖子,并且在每5篇帖子之后,我可以添加一个可以作为其他帖子类型获取的广告图像
我可以得到currentpost索引,并可以在第5位添加广告,但我无法继续下去。
这是我的密码
// WP_Query arguments
$args = array(
\'post_type\' => array( \'trivia\' ),
\'post_status\' => array( \'publish\' ),
\'order\' => \'ASC\',
\'orderby\' => \'rand\',
\'posts_per_page\' => -1,
//\'offset\' => 1,
\'post__not_in\' => array($recentPosts )
);
// The Query
$query = new WP_Query( $args );
$maxPosts = $query->post_count;
$startPost;
$currentPost = $query->current_post;;
$adSpace = $currentPost+6;
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// do something
// $currentPost = $startPost+1;
if ($currentPost < $maxPosts){
printf ($currentPost."</br>");
$currentPost++;
if($currentPost == $adSpace){
echo "Ad Space</br>";
}
}
谁能帮忙吗。
提前感谢