最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

給WordPress中的留言加上樓層號的PHP代碼實例

 更新時間:2015年12月14日 15:06:27   投稿:goldensun  
這篇文章主要介紹了給WordPress中的留言加上樓層號的PHP代碼實例,這里只針對主評論而不針對層疊式的樓中樓里的評論,需要的朋友可以參考下

最近突然發(fā)現(xiàn)博客的評論樓層有點問題,之前一直設(shè)置的是“在每個頁面頂部顯示新的評論”,也就是所謂的倒序顯示評論,但是主題只支持順序的評論樓層好,于是樓層和樓層號之間對不上。搜了一下在zww.me發(fā)現(xiàn)有實現(xiàn)的代碼,但是放到博客之后無法正常工作,比如限制分頁顯示為25條的時候,文章只有一條評論時也顯示的25樓。折騰了一下搞定了,做個記錄,也供大家參考。

在主題文件 functions.php中找到$GLOBALS['comment'] = $comment;在后面加上下面的代碼:

/* 主評論計數(shù)器 */
 global $commentcount,$wpdb, $post;
 if(!$commentcount) { //初始化樓層計數(shù)器
  if ( get_option('comment_order') === 'desc' ) { //倒序
  $comments = $wpdb->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);//獲取主評論總數(shù)量
  $page = get_query_var('cpage');//獲取當前評論列表頁碼
  $cpp=get_option('comments_per_page');//獲取每頁評論顯示數(shù)量
  if (ceil($cnt / $cpp) == 1 || ($page > 1 && $page == ceil($cnt / $cpp))) {
   $commentcount = $cnt + 1;//如果評論只有1頁或者是最后一頁,初始值為主評論總數(shù)
  } else {
   $commentcount = $cpp * $page + 1;
  }
  }else{ //順序
  $page = get_query_var('cpage')-1;
  $cpp=get_option('comments_per_page');//獲取每頁評論數(shù)
  $commentcount = $cpp * $page;
  }
 }
/* 主評論計數(shù)器 end */
 if ( !$parent_id = $comment->comment_parent ) {
  $commentcountText = '<div class="floor">';
  if ( get_option('comment_order') === 'desc' ) { //倒序
  $commentcountText .= --$commentcount . '樓';
  } else {
  switch ($commentcount) {
   case 0:
   $commentcountText .= '<span>沙發(fā)!</span>'; ++$commentcount;
   break;
   case 1:
   $commentcountText .= '<span>板凳!</span>'; ++$commentcount;
   break;
   case 2:
   $commentcountText .= '<span>地板!</span>'; ++$commentcount;
   break;
   default:
   $commentcountText .= ++$commentcount . '樓';
   break;
  }
  }
  $commentcountText .= '</div">';
 }
 }

然后在合適的位置加上以下代碼輸出樓層號

<?php echo $commentcountText; //主評論樓層號 - by zwwooooo ?>

修改之后的代碼應(yīng)該是這樣的(以官方最新的 wp_list_comments() 回調(diào)函數(shù)代碼為例):

<?php
function mytheme_comment($comment, $args, $depth) {
 $GLOBALS['comment'] = $comment;
 /* 主評論計數(shù)器 by zwwooooo Modified Gimhoy(http://blog.gimhoy.com) */
 global $commentcount,$wpdb, $post;
 if(!$commentcount) { //初始化樓層計數(shù)器
  if ( get_option('comment_order') === 'desc' ) { //倒序
  $comments = $wpdb->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);//獲取主評論總數(shù)量
  $page = get_query_var('cpage');//獲取當前評論列表頁碼
  $cpp=get_option('comments_per_page');//獲取每頁評論顯示數(shù)量
  if (ceil($cnt / $cpp) == 1 || ($page > 1 && $page == ceil($cnt / $cpp))) {
   $commentcount = $cnt + 1;//如果評論只有1頁或者是最后一頁,初始值為主評論總數(shù)
  } else {
   $commentcount = $cpp * $page + 1;
  }
  }else{ //順序
  $page = get_query_var('cpage')-1;
  $cpp=get_option('comments_per_page');//獲取每頁評論數(shù)
  $commentcount = $cpp * $page;
  }
 }
 /* 主評論計數(shù)器 end */
 if ( !$parent_id = $comment->comment_parent ) {
  $commentcountText = '<div class="floor">';
  if ( get_option('comment_order') === 'desc' ) { //倒序
  $commentcountText .= --$commentcount . '樓';
  } else {
  switch ($commentcount) {
   case 0:
   $commentcountText .= '<span>沙發(fā)!</span>'; ++$commentcount;
   break;
   case 1:
   $commentcountText .= '<span>板凳!</span>'; ++$commentcount;
   break;
   case 2:
   $commentcountText .= '<span>地板!</span>'; ++$commentcount;
   break;
   default:
   $commentcountText .= ++$commentcount . '樓';
   break;
  }
  }
  $commentcountText .= '</div">';
 }
 }

 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</cite> <span class="says">says:</span>'), get_comment_author_link()) ?>
 </div>
<?php if ($comment->comment_approved == '0') : ?>
 <em class="comment-awaiting-moderation"><?php _e('Your comment is awaiting moderation.') ?></em>
 <br />
<?php endif; ?>

 <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()) ?></a><?php edit_comment_link(__('(Edit)'),' ','' );
 ?>
 </div>

 <?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']))) ?>
 </div>

 <?php echo $commentcountText; //主評論樓層號 - by zwwooooo ?>

 <?php if ( 'div' != $args['style'] ) : ?>
 </div>
 <?php endif; ?>
<?php
 }

樣式就自己添加吧~~

相關(guān)文章

最新評論

大姚县| 大田县| 长寿区| 云阳县| 山阴县| 扎赉特旗| 临桂县| 沂源县| 江安县| 会理县| 孝感市| 开封县| 当阳市| 中宁县| 莒南县| 吐鲁番市| 长兴县| 富顺县| 中宁县| 仪陇县| 阿勒泰市| 铜梁县| 吕梁市| 青川县| 武汉市| 久治县| 汤阴县| 阳山县| 湟源县| 浠水县| 辉南县| 漳浦县| 道真| 绥阳县| 新巴尔虎右旗| 通山县| 盖州市| 江安县| 万山特区| 朝阳县| 射洪县|