每5个帖子后发帖自定义帖子

时间:2014-04-21 10:51:13

标签: wordpress loops custom-post-type

我需要在循环中的主要博客帖子中每5篇帖子后从自定义帖子类型中挂一个帖子。请用一些代码向我推荐。

1 个答案:

答案 0 :(得分:1)

可能在那里没有钩子或我不知道,但你可以做这样的事情: -

<?php
$postnum = 0; // Set counter to 0 outside the loop

if (have_posts()) : 
    while (have_posts()) : the_post();

        // Do regular stuff

        $postnum++; // Increment counter

        if ($postnum % 5 == 0){ // If the remainder of the counter value divided by 5 equals zero
            // Do special stuff
        }

    endwhile;
endif;
?>

希望这会对你有所帮助。