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']))) ?>
你能够将 Reply 修正成你心愿的文字。
$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'])))
这行是评论链接。
将以上代码放在评论 loop 内既可应用,上面是完好的 custom_comment.php 函数文件:
<?php if (!function_exists("custom_comment")) { function custom_comment($comment, $args, $depth) { $GLOBALS['comment'] = $comment; ?> <li <?php comment_class(); ?>> <a name="comment-<?php comment_ID() ?>"></a> <?php if(get_comment_type() == "comment"){ ?> <?php the_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']))) ?> <?php the_commenter_link() ?> <?php echo get_comment_date(get_option( 'date_format' )) ?> <?php _e('at', 'jintu'); ?> <?php echo get_comment_time(get_option( 'time_format' )); ?> <?php edit_comment_link(__('Edit', 'jintu'), '', ''); ?> <?php comment_text() ?> <?php if ($comment->comment_approved == '0') { ?> <p class='unapproved'><?php _e('Your comment is awaiting moderation.', 'jintu'); ?></p> <?php } ?> <?php } } ?>
将下面的代码保留到 custom_comment.php 文件, 在functions.php里加载即可,wordpress修正回复文字的办法就这么简略,试试吧。
以上就是安达网络工作室关于《wordpress回复评论文字的修改方法》的一些看法。更多内容请查看本栏目更多内容!
兴许大家在一些时分可能会遇到这样一个状况,就是在关上一个正轨网站的时分点击了一个页面或许目录忽然跳转到...
home_url()(获取首页链接) ome_url() 函数用来获取 WordPress 的首页链接。 用法 home_url( $path, $sch...
穆童博客应用的是Wordpress顺序,上次在改换了效劳器之后不知为何一切新评论的IP地址都显示为127.0.0.1。刚...
首先到Flash MP3 Player 的主页上下载该顺序。解紧缩之后,将 mp3player.swf 和 ufo.js 两个文件放到效劳器...
在wordpress模板制造进程中,有一些貌似复杂的成绩,其实只需确定了成绩呈现的地位,大少数都能够自行处理。...
wordpress是十分不错的博客顺序,也是很多博客喜好者所喜爱的建站顺序之一,wordpress不只仅模版丰厚,而且...