如果可以更新主题文件,只需更新类别即可。php和归档。php方式:
<?php
$counter = 0;
while ($the_query->have_posts()) :
$the_query->the_post();
?>
<?php if ($counter % 4 == 0) : ?>
<div class="my-ad">my ad</div>
<?php endif; ?>
<div class="post">
<?php the_title(); ?>
</div>
<?php
$counter++;
endwhile;
您还可以通过插件更改存档/类别模板
template_include
钩
如果无法访问主题,请使用loop_start
或loop_end
挂钩:
add_action( \'loop_start\', function( $query ){
if( $query->is_category() ){
}
});
然后用js在帖子之间放置广告。
您还可以连接到the_post
或the_content
, 检查是否在类别/归档模板上,并根据全局计数变量添加您的广告