wordpress怎样显示文章评论

 我来答
匿名用户
推荐于2016-05-10
展开全部

1、在wordpress模板的index.php文件中的文章调用循环内,while (have_posts()) : the_post();和endwhile;之间适当位置,添加以下代码:

2、示例:

3、原理:使用全局变量$withcomments,并将其值改成true(改成这样也是可以的$withcomments =
1;)。接着包含用于在首页显示评论的模板opinion.php,如想使用默认评论模板comments.php,改成
comments_template();该方法可用于分类页、标签页、日期归档页等!

博思aippt
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT... 点击进入详情页
本回答由博思aippt提供
匿名用户
2015-03-30
展开全部
  首先,将下面的代码添加到您的当前主题的functions.php文件中:
  function bg_recent_comments($no_comments = 5, $comment_len = 80, $avatar_size = 48) {

  $comments_query = new WP_Comment_Query();
  $comments = $comments_query->query( array( 'number' => $no_comments ) );

  $comm = '';
  if ( $comments ) : foreach ( $commentsas$comment ) :
  $comm .= '<li>' . get_avatar( $comment->comment_author_email, $avatar_size );
  $comm .= '<a class="author" href="' . get_permalink( $comment->post_ID ) . '#comment-' . $comment->comment_ID . '">';
  $comm .= get_comment_author( $comment->comment_ID ) . ':</a> ';
  $comm .= '<p>' . strip_tags( substr( apply_filters( 'get_comment_text', $comment->comment_content ), 0, $comment_len ) ) . '</p></li>';
  endforeach; else :
  $comm .= 'No comments.';
  endif;

  echo$comm;
  }
  您可以在第一行设置适合你的评论条数,最长评论字数限制,以及gravatar头像尺寸长度等等。
  然后,添加下面的代码到您想要显示最近的评论在您的WordPress主题的任何位置(如何在文本小工具运行PHP,比如下面的代码,请参考:http://www.wpmee.com/use-php-wordpress-widgets/):
  <div class="widget recent-comments">
  <h3>Recent Comments</h3>
  <?php bg_recent_comments(); ?>
  </div>
  最后你也可以添加下面的CSS到你的style.css文件中:
  .recent-comments { list-style: none; font-size: 12px; color: #485358; }
  .recent-comments li { overflow: hidden; padding: 20px 0; border-top: 1pxdotted#DADEE1; }
  .recent-comments li:first-child { border: 0 none; }
  .recent-comments img { float: left; margin-right: 8px; }
  .recent-comments a { display: block; margin-top: 10px; padding-top: 10px; }
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
山水阿锐
2015-03-30 · TA获得超过34.3万个赞
知道顶级答主
回答量:23.7万
采纳率:91%
帮助的人:3.1亿
展开全部
您好,我们知道WordPress官方小工具中自带的就有近期评论,但是WordPress自带的近期评论是显示的文章标题,而非人们留下的评论本事,当然,也有许多这样的插件,但是插件多了毕竟不是一件好事,会影响网站的速度不是吗?所以,如果能不用插件,俺们还是尽量的不用插件,具体可以参考:http://www.wpmee.com/no_category_base/ 中引用的语句。
首先,将下面的代码添加到您的当前主题的functions.php文件中:
function bg_recent_comments($no_comments = 5, $comment_len = 80, $avatar_size = 48) {

$comments_query = new WP_Comment_Query();
$comments = $comments_query->query( array( 'number' => $no_comments ) );

$comm = '';
if ( $comments ) : foreach ( $commentsas$comment ) :
$comm .= '<li>' . get_avatar( $comment->comment_author_email, $avatar_size );
$comm .= '<a class="author" href="' . get_permalink( $comment->post_ID ) . '#comment-' . $comment->comment_ID . '">';
$comm .= get_comment_author( $comment->comment_ID ) . ':</a> ';
$comm .= '<p>' . strip_tags( substr( apply_filters( 'get_comment_text', $comment->comment_content ), 0, $comment_len ) ) . '</p></li>';
endforeach; else :
$comm .= 'No comments.';
endif;

echo$comm;
}
您可以在第一行设置适合你的评论条数,最长评论字数限制,以及gravatar头像尺寸长度等等。
然后,添加下面的代码到您想要显示最近的评论在您的WordPress主题的任何位置(如何在文本小工具运行PHP,比如下面的代码,请参考:http://www.wpmee.com/use-php-wordpress-widgets/):
<div class="widget recent-comments">
<h3>Recent Comments</h3>
<?php bg_recent_comments(); ?>
</div>
最后你也可以添加下面的CSS到你的style.css文件中:
.recent-comments { list-style: none; font-size: 12px; color: #485358; }
.recent-comments li { overflow: hidden; padding: 20px 0; border-top: 1pxdotted#DADEE1; }
.recent-comments li:first-child { border: 0 none; }
.recent-comments img { float: left; margin-right: 8px; }
.recent-comments a { display: block; margin-top: 10px; padding-top: 10px; }
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式