在The Loop中,我想检索当前的帖子数.
例如,在每3个帖子之后,我想插入一个广告.
那么,我如何获得循环计数的值?
您可以使用
WP_Query
对象实例的current_post成员来
获取当前的post迭代;
while ( have_posts() ) : the_post();
// your normal post code
if ( ( $wp_query->current_post + 1 ) % 3 === 0 ) {
// your ad code here
}
endwhile;
注意,如果你在函数中使用它,你需要全局化$wp_query.
原文链接:https://www.f2er.com/php/135846.html