【发布时间】:2016-01-30 14:38:03
【问题描述】:
使用自定义 wordpress 循环:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
//Post Content
<?php endwhile;?>
//Pagination
<?php else : ?>
//No posts message
<?php endif; ?>
我需要帮助重组代码以显示 html Div.block 在每个页面第 4 次发布后,条件是该页面至少有 6 个要显示的帖子。
【问题讨论】: