WordPress 评论时间 nofollow 与评论链接 nofollow 、阅读全文 more-link nofollow 如出一辙,都是由于他们的链接后面加了 #* 这样的锚文本。

修改方法

在 /wp-includes/comment-template.php 文件中找到

<div ><a href="<?php%20echo%20htmlspecialchars(%20get_comment_link(%20$comment->comment_ID%20)%20)%20?>">
    <?php
        /* translators: 1: date, 2: time */
        printf( __('%1$s at %2$s'), get_comment_date(),  get_comment_time()) ?></a><?php
        edit_comment_link(__('(Edit)'),'&nbsp;&nbsp;','' );
    ?>
</div>

修改为

<div ><a rel="nofollow" href="<?php%20echo%20htmlspecialchars(%20get_comment_link(%20$comment->comment_ID%20)%20)%20?>">
    <?php
        /* translators: 1: date, 2: time */
        printf( __('%1$s at %2$s'), get_comment_date(),  get_comment_time()) ?></a><?php
        edit_comment_link(__('(Edit)'),'&nbsp;&nbsp;','' );
    ?>
</div>

即可。