WordPress的小工具用起来很是便利,不外其内容无法改削。如WordPress小工具的比来评论,经常用于侧边栏默认显示 评论者与文章,不会显示评论者的评论内容。
改削轨范
备份\wp-includes\default-widgets.php,找到\wp-includes\default-widgets.php文件中,年夜约在679行
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(
sprintf(_x('%1$s 在“%2$s”留言:', 'widgets'), get_comment_author_link(), '<a href="' . esc_url(这样就OK了。
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>';
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官方中文版。
显示效不美观
WordPress小工具比来评论显示评论内容效不美观图