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