wordpress显示最新评论的内容

wordpress显示最新评论的内容

昨天又开始折腾Wordpress了!一直觉得程序员之家,由于用的开源免费的主题,Web前端体验不好,于是稍微调整了下网站的左右栏目结构,将分享按钮整合到文章里,大家以后可以直接在文章页面点击“分享到”直接分享。然后内页有大量的垃圾链接,于是把最近留言函数更改了一下,改成Wordpress首页显示评论的内容。

wordpress显示最新评论的内容操作步骤:

步骤1:连接FTP,下载wp_includes/default-widgets.php文件,编辑.

步骤2:查找“ get_the_title”函数 ,找到下面的代码:

[cpp]

if ( $comments ) {
foreach ( (array) $comments as $comment) {
$output .= ‘<li class=”recentcomments”>’ . /* translators: comments widget: 1: comment author, 2: post link */ 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>’;
}
}

[/cpp]

步骤3:更改on为“说”,更改函数:get_the_title($comment->comment_post_ID)。更改成功后代码如下:

[cpp]if ( $comments ) {
foreach ( (array) $comments as $comment) {
$output .= ‘<li class=”recentcomments”>’ . /* translators: comments widget: 1: comment author, 2: post link */ sprintf(_x(‘%1$s 说: %2$s’, ‘widgets’), get_comment_author_link(), ‘<a href=”‘ . esc_url( get_comment_link($comment->comment_ID) ) . ‘”>’ . strip_tags( $comment->comment_content) . ‘</a>’) . ‘</li>’;
}
}[/cpp]

步骤4:保存,上传覆盖原文件。

具体效果,可以观看本站右栏目评论挂件组!

2 Replies to “wordpress显示最新评论的内容”

  1. 现在已经很少折腾源程序了,因为wp升级很快,导致主题也在不断升级,每次升级都是个痛苦的过程。

    1. 的确,不喜欢Wordpress升级,越升级越臃肿。