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)'),' ','' );
?>
</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)'),' ','' );
?>
</div>
即可。