wordpress怎样显示文章评论
3个回答
博思aippt
2024-07-20 广告
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; }
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; }
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
您好,我们知道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; }
首先,将下面的代码添加到您的当前主题的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; }
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询