我正在使用comment_reply_link,用于每条评论的回复链接,但我想使用图片而不是文字。我只需要评论回复的链接,而不是整个事情。对于WP论坛,Codex没有帮助。
<span class="reply">
<a href="<?php //comment reply link here ?>">
<img src="<?php bloginfo('template_url') ?>/css/images/reply-button.png" alt="" />
</a>
</span>
答案 0 :(得分:4)
如果您只需要替换链接文本,请将图像代码添加为参数:
<?php
comment_reply_link( array ( 'reply_text' => '<img src="..." alt="Reply">' ) );
?>
否则请参阅source code了解URL的生成方式。