WordPress评论回复链接图片

时间:2012-01-29 作者:Dave Burns

我目前正在为我创建的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); }
我们将非常感谢您的帮助。

提前感谢!

1 个回复
最合适的回答,由SO网友:Michael 整理而成

try:

<?php comment_reply_link(array_merge($args, array(\'depth\' => $depth, \'max_depth\' => $args[\'max_depth\'], \'reply_text\' => \'\'))) ?> 
结束

相关推荐

Ajax submit comments

我想通过ajax提交评论。单击comment submit按钮,通过jquery的ajax方法和结果发布评论(“等待审核…”)显示在页面上。我进入了剧本。js文件,并为按钮添加了一个单击处理程序。它验证并执行ajax提交,但这不起作用。单击提交评论仍会重定向到wp评论帖子。php页面。让它发挥作用的秘诀是什么?以下是我在脚本中的内容。js公司:$(\"#my_comment_form\").validate({ submitHandler: function(data){