我试图在显示广告的每五个评论(或任意值)之间插入一个短代码。我的主题是将评论称为:
<ol class="comment-list">
<?php
wp_list_comments( array(
'style' => 'ol',
'short_ping' => true,
'avatar_size' => 60
) );
?>
</ol><!-- .comment-list -->
谢谢!