评论回复。想修改的童鞋,来看看介绍吧。
wordpress主题教程中修改WordPress回复评论文字的方法,首先需要建立一个自定义评论模板,然后通过调用这个评论函数实现自定义。回复文本可以由以下代码修改:
<?php $defaults=array('add_below'=>'comment','respond_id'=>'respond','reply_text'=>__('Reply'), 'login_text'=>__('Reply'),'depth'=>0,'before'=>'','after'=>''); comment_reply_link(array_merge($defaults,array('depth'=>$depth,'max_depth'=>$args['max_depth'])))?>您可以根据需要修改回复文本。
$defaults=array(‘add_below’=>‘comment’,‘respond_id’=>‘respond’,‘reply_text’=>__(‘Reply’)这一行是默认的回复注释。
‘login_text’=>__(‘Reply’),‘depth’=>0,‘before’=>”,‘after’=>”);这一行是落地后的评论。
comment_reply_link(array_merge($defaults,array(‘depth’=>$depth,‘max_depth’=>$args['max_depth'])))这一行是评论链接。
上面的代码可以用在注释循环中,下面是完整的custom_comment.php函数文件:
<?php if(!function_exists("custom_comment")){ functioncustom_comment($comment,$args,$depth){ $GLOBALS['comment']=$comment;?> <li<?phpcomment_class();?>> <aname="comment-<?phpcomment_ID()?>"></a> <?phpif(get_comment_type()=="comment"){?> <?phpthe_commenter_avatar($args)?> <?php}?> <?php $defaults=array('add_below'=>'comment','respond_id'=>'respond','reply_text'=>__('Reply'), 'login_text'=>__('Reply'),'depth'=>0,'before'=>'','after'=>''); comment_reply_link(array_merge($defaults,array('depth'=>$depth,'max_depth'=>$args['max_depth'])))?> <?phpthe_commenter_link()?> <?phpechoget_comment_date(get_option('date_format'))?><?php_e('at','jintu');?><?phpechoget_comment_time(get_option('time_format'));?> <?phpedit_comment_link(__('Edit','jintu'),'','');?> <?phpcomment_text()?> <?phpif($comment->comment_approved=='0'){?> <pclass='unapproved'><?php_e('Yourcommentisawaitingmoderation.','jintu');?></p> <?php}?> <?php } }?>将上述代码保存到custom_comment.php文件中,并将其加载到functions.php中。wordpress修改回复文字的方法就是这么简单。试试看。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)