91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用PHP怎么在WordPress中實現一個留言樓層號功能

發布時間:2020-12-17 14:24:25 來源:億速云 閱讀:187 作者:Leah 欄目:開發技術

利用PHP怎么在WordPress中實現一個留言樓層號功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

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

/* 主評論計數器 */
 global $commentcount,$wpdb, $post;
 if(!$commentcount) { //初始化樓層計數器
  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);//獲取主評論總數量
  $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 = '<div class="floor">';
  if ( get_option('comment_order') === 'desc' ) { //倒序
  $commentcountText .= --$commentcount . '樓';
  } else {
  switch ($commentcount) {
   case 0:
   $commentcountText .= '<span>沙發!</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 ?>

修改之后的代碼應該是這樣的(以官方最新的 wp_list_comments() 回調函數代碼為例):

<?php
function mytheme_comment($comment, $args, $depth) {
 $GLOBALS['comment'] = $comment;
 /* 主評論計數器 by zwwooooo Modified Gimhoy(http://blog.gimhoy.com) */
 global $commentcount,$wpdb, $post;
 if(!$commentcount) { //初始化樓層計數器
  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);//獲取主評論總數量
  $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 = '<div class="floor">';
  if ( get_option('comment_order') === 'desc' ) { //倒序
  $commentcountText .= --$commentcount . '樓';
  } else {
  switch ($commentcount) {
   case 0:
   $commentcountText .= '<span>沙發!</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
 }

看完上述內容,你們掌握利用PHP怎么在WordPress中實現一個留言樓層號功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台北县| 额济纳旗| 界首市| 龙川县| 虞城县| 清新县| 平罗县| 绥宁县| 惠来县| 肥乡县| 大名县| 南漳县| 沙湾县| 富锦市| 大渡口区| 扎赉特旗| 九龙城区| 木兰县| 渝中区| 文安县| 巴青县| 德惠市| 视频| 逊克县| 扎兰屯市| 牡丹江市| 肥东县| 安徽省| 兖州市| 信阳市| 荆门市| 曲周县| 富民县| 吉林市| 修文县| 罗定市| 昌平区| 饶平县| 新营市| 芜湖县| 犍为县|