我目前正在为我创建的Wordpress主题设置评论,我刚刚成功创建nested comments 但我在删除这个词时遇到了问题\'reply\' 从回复按钮,以便通过css使用图像。
我目前在回复链接中使用的代码如下:
<?php comment_reply_link(array_merge($args, array(\'depth\' => $depth, \'max_depth\' => $args[\'max_depth\']))) ?>
我需要“回复”一词完全消失,只需依靠我的css按钮即可,如下所示:
ol.commentlist li div.reply { width:104px;height:35px;background-image:url(images/comment_reply.png); }
ol.commentlist li div.reply:hover { background-image:url(images/comment_reply_rl.png);}
ol.commentlist li div.reply a { float:left;width:104px;height:35px;background-image:url(images/comment_reply.png); }
我们将非常感谢您的帮助。
提前感谢!
最合适的回答,由SO网友:Michael 整理而成
try:
<?php comment_reply_link(array_merge($args, array(\'depth\' => $depth, \'max_depth\' => $args[\'max_depth\'], \'reply_text\' => \'\'))) ?>