例如,在每3个帖子之后,我想插入一个广告.
那么,我如何获得循环计数的值?
WP_Query
while ( have_posts() ) : the_post(); // your normal post code if ( ( $wp_query->current_post + 1 ) % 3 === 0 ) { // your ad code here } endwhile;
注意,如果你在函数中使用它,你需要全局化$wp_query.