前端之家收集整理的这篇文章主要介绍了
给WordPress中的留言加上楼层号的PHP代码实例,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
最近突然发现博客的评论楼层有点问题,之前一直设置的是“在每个页面顶部显示新的评论”,也就是所谓的倒序显示评论,但是主题只支持顺序的评论楼层好,于是楼层和楼层号之间对不上。搜了一下在zww.me发现有实现的代码,但是放到博客之后无法正常工作,比如限制分页显示为25条的时候,文章只有一条评论时也显示的25楼。折腾了一下搞定了,做个记录,也供大家参考。
在主题文件 functions.PHP中找到$GLOBALS['comment'] = $comment;在后面加上下面的代码:
get_results("SELECT * FROM
$wpdb->comments WHERE comment_post_ID = $post->ID AND comment_type = '' AND comment_approved = '1' AND !comment_parent");
$cnt = count($comments);//
获取主
评论总
数量
$page = get_query_var('cpage');//
获取当前
评论列表页码
$cpp=get_option('comments_per_page');//
获取每页
评论显示数量
if (ceil($cnt / $cpp) == 1 || ($page > 1 && $page == ceil($cnt / $cpp))) {
$commentcount = $cnt + 1;//如果
评论只有1页或者是最后一页,初始值为主
评论总数
} else {
$commentcount = $cpp * $page + 1;
}
}else{ //顺序
$page = get_query_var('cpage')-1;
$cpp=get_option('comments_per_page');//
获取每页
评论数
$commentcount = $cpp * $page;
}
}
/* 主
评论计数器 end */
if ( !$parent_id = $comment->comment_parent ) {
$commentcountText = '
然后在合适的位置加上以下代码输出楼层号
PHP;">
修改之后的代码应该是这样的(以官方最新的 wp_list_comments() 回调函数代码为例):
PHP;">
get_results("SELECT * FROM
$wpdb->comments WHERE comment_post_ID = $post->ID AND comment_type = '' AND comment_approved = '1' AND !comment_parent");
$cnt = count($comments);//
获取主
评论总
数量
$page = get_query_var('cpage');//
获取当前
评论列表页码
$cpp=get_option('comments_per_page');//
获取每页
评论显示数量
if (ceil($cnt / $cpp) == 1 || ($page > 1 && $page == ceil($cnt / $cpp))) {
$commentcount = $cnt + 1;//如果
评论只有1页或者是最后一页,初始值为主
评论总数
} else {
$commentcount = $cpp * $page + 1;
}
}else{ //顺序
$page = get_query_var('cpage')-1;
$cpp=get_option('comments_per_page');//
获取每页
评论数
$commentcount = $cpp * $page;
}
}
/* 主
评论计数器 end */
if ( !$parent_id = $comment->comment_parent ) {
$commentcountText = '
extract($args,EXTR_SKIP);
if ( 'div' == $args['style'] ) {
$tag = 'div';
$add_below = 'comment';
} else {
$tag = 'li';
$add_below = 'div-comment';
}
?>
<<?php echo $tag ?> <?php comment_class(empty( $args['has_children'] ) ? '' : 'parent') ?> id="comment-<?php comment_ID() ?>">
<?php if ( 'div' != $args['style'] ) : ?>
<div id="div-comment-<?php comment_ID() ?>" class="comment-body">
<?php endif; ?>
<div class="comment-author vcard">
<?php if ($args['avatar_size'] != 0) echo get_avatar( $comment,$args['avatar_size'] ); ?>
<?PHP printf(__('<cite class="fn">%s <span class="says">says:'),get_comment_author_link()) ?>
comment_approved == '0') : ?>
<div class="comment-Meta commentMetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>">
<?php
/ translators: 1: date,2: time /
printf( ('%1$s at %2$s'),get_comment_date(),get_comment_time()) ?><?php edit_comment_link(('(Edit)'),' ','' );
?>
<?php comment_text() ?>
<div class="reply">
<?php comment_reply_link(array_merge( $args,array('add_below' => $add_below,'depth' => $depth,'max_depth' => $args['max_depth']))) ?>
<?php echo $commentcountText; //主评论楼层号 - by zwwooooo ?>
<?php if ( 'div' != $args['style'] ) : ?>