我在网上看到了很多关于旧版本WP的教程,但在3.4.2中找不到将评论内容和作者的头像/坟墓者分开的教程。
我正在寻找一种代码,将实际注释内容与gravatar分隔开来and does so in the simplest way possible, 我不想更新评论。php每次更新WP核心时。有没有一种简单的方法来处理wp\\U list\\U注释?我这样做是为了设计目的。
这就是我目前称之为化身的方式:
<?php wp_list_comments(\'avatar_size=60\'); ?>
最合适的回答,由SO网友:AndrettiMilas 整理而成
好的,这就是我所做的。如果有人有更好的想法,我会把答案保留几个小时,然后选择它!
<?php if($comments) : ?>
<ol>
<?php foreach($comments as $comment) : ?>
<li id="comment-<?php comment_ID(); ?>">
<?php if ($comment->comment_approved == \'0\') : ?>
<p>Your comment is awaiting approval</p>
<?php endif; ?>
<cite class="fn"><?php comment_author_link(); ?> on <?php comment_date(); ?> at <?php comment_time(); ?></cite>
<?php comment_text(); ?>
</li>
<?php endforeach; ?>
</ol>
<?php else : ?>
<p>No comments yet</p>
<?php endif; ?>