我试着每5个活动在BuddyPress中显示一次广告代码。有人能建议如何做到这一点吗?以下是我目前掌握的情况:
<?php while ( bp_activities() ) : bp_the_activity(); ?>
<?php bp_get_template_part( \'activity/entry\' ); ?>
<?php
$count = bp_get_activity_count();
for ( $i = 1; $i < $count; $i++ ) {
if ( $i % 8 == 0 ) {
?>
<?php the_ad(3860); ?>
<?php } ?>
<?php } ?>
<?php endwhile; ?>