WordPress小工具最近评论显示评论内容

2019-03-27 08:50:24来源: DeXu.Xie's Blog 阅读 ()

新老客户大回馈,云服务器低至5折

WordPress的小工具用起来非常方便,不过其内容无法修改。如WordPress小工具的最近评论,经常用于侧边栏默认显示 评论者与文章,不会显示评论者的评论内容。

修改步骤

备份\wp-includes\default-widgets.php,找到\wp-includes\default-widgets.php文件中,大约在679行

sprintf(_x('%1$s on %2$s', 'widgets'), get_comment_author_link(), '<a href="' . esc_url(
get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>') . '</li>';

将其修改为

//sprintf(_x('%1$s on %2$s', 'widgets'), get_comment_author_link(), '<a href="' . esc_url(
//get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>') . '</li>';
sprintf(_x('%1$s 在“%2$s”留言:', 'widgets'), get_comment_author_link(), '<a href="' . esc_url(
get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>') . '<span>' . strip_tags( $comment->comment_content) . '</span></li>';

懒得修改的,下载:default-widgets.php,适用于3.4.1官方中文版。

这样就OK了。

显示效果

WordPress小工具最近评论显示评论内容效果图

本文来自:DeXu.Xie‘s Blog,本文地址:http://xiedexu.cn/wordpress-widget-recent-comments.htm

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:wordpress去掉读者评论员名称里的链接

下一篇:HTML大纲算法对结构的影响