如图所示:“注释”标签始终显示在同一位置。如何删除或自定义它?我真的不知道是什么函数控制这个标签。我的部分评论。php如下所示:
<?php if ( have_comments() ) : ?>
<ol class="commentlist">
<?php wp_list_comments(); ?>
</ol>
<?php if ( get_comment_pages_count() > 1 && get_option( \'page_comments\' ) ) : ?>
<nav id="comment-nav-below" class="paged-navigation contain">
<h1>Comments Navigation</h1>
<div><?php previous_comments_link(\'Older Comments\'); ?></div>
<div><?php next_comments_link(\'Newer Comments\'); ?></div>
</nav>
<?php endif; // check for comment navigation ?>
<?php endif; ?>
<?php if ( comments_open() ) : ?>
<?php comment_form(); ?>
<?php elseif ( have_comments() ) : ?>
<p class="comments-closed">Comments are closed</p>
<?php endif; ?>