给WordPress中的留言加上楼层号的PHP代码实例
网络编程 2021-07-05 09:09www.168986.cn编程入门
这篇文章主要介绍了给WordPress中的留言加上楼层号的PHP代码实例,这里只针对主评论而不针对层叠式的楼中楼里的评论,需要的朋友可以参考下
最近突然发现博客的评论楼层有点问题,之前一直设置的是“在每个页面顶部显示新的评论”,也就是所谓的倒序显示评论,主题只支持顺序的评论楼层好,于是楼层和楼层号之间对不上。搜了一下在zww.me发现有实现的代码,放到博客之后无法正常工作,比如限制分页显示为25条的时候,文章只有一条评论时也显示的25楼。折腾了一下搞定了,做个记录,也供大家参考。
在主题文件 functions.php中找到$GLOBALS['ment'] = $ment;在后面加上狼蚁网站SEO优化的代码
/ 主评论计数器 / global $mentcount,$wpdb, $post; if(!$mentcount) { //初始化楼层计数器 if ( get_option('ment_order') === 'desc' ) { //倒序 $ments = $wpdb->get_results("SELECT FROM $wpdb->ments WHERE ment_post_ID = $post->ID AND ment_type = '' AND ment_approved = '1' AND !ment_parent"); $t = count($ments);//获取主评论总数量 $page = get_query_var('cpage');//获取当前评论列表页码 $cpp=get_option('ments_per_page');//获取每页评论显示数量 if (ceil($t / $cpp) == 1 || ($page > 1 && $page == ceil($t / $cpp))) { $mentcount = $t + 1;//如果评论只有1页或者是一页,初始值为主评论总数 } else { $mentcount = $cpp $page + 1; } }else{ //顺序 $page = get_query_var('cpage')-1; $cpp=get_option('ments_per_page');//获取每页评论数 $mentcount = $cpp $page; } } / 主评论计数器 end / if ( !$parent_id = $ment->ment_parent ) { $mentcountText = '<div class="floor">'; if ( get_option('ment_order') === 'desc' ) { //倒序 $mentcountText .= --$mentcount . '楼'; } else { switch ($mentcount) { case 0: $mentcountText .= '<span>沙发!</span>'; ++$mentcount; break; case 1: $mentcountText .= '<span>板凳!</span>'; ++$mentcount; break; case 2: $mentcountText .= '<span>地板!</span>'; ++$mentcount; break; default: $mentcountText .= ++$mentcount . '楼'; break; } } $mentcountText .= '</div">'; } }
然后在合适的位置加上以下代码输出楼层号
<?php echo $mentcountText; //主评论楼层号 - by zwwooooo ?>
修改之后的代码应该是这样的(以官方最新的 wp_list_ments() 回调函数代码为例)
<?php function mytheme_ment($ment, $args, $depth) { $GLOBALS['ment'] = $ment; / 主评论计数器 by zwwooooo Modified Gimhoy(http://blog.gimhoy.) / global $mentcount,$wpdb, $post; if(!$mentcount) { //初始化楼层计数器 if ( get_option('ment_order') === 'desc' ) { //倒序 $ments = $wpdb->get_results("SELECT FROM $wpdb->ments WHERE ment_post_ID = $post->ID AND ment_type = '' AND ment_approved = '1' AND !ment_parent"); $t = count($ments);//获取主评论总数量 $page = get_query_var('cpage');//获取当前评论列表页码 $cpp=get_option('ments_per_page');//获取每页评论显示数量 if (ceil($t / $cpp) == 1 || ($page > 1 && $page == ceil($t / $cpp))) { $mentcount = $t + 1;//如果评论只有1页或者是一页,初始值为主评论总数 } else { $mentcount = $cpp $page + 1; } }else{ //顺序 $page = get_query_var('cpage')-1; $cpp=get_option('ments_per_page');//获取每页评论数 $mentcount = $cpp $page; } } / 主评论计数器 end / if ( !$parent_id = $ment->ment_parent ) { $mentcountText = '<div class="floor">'; if ( get_option('ment_order') === 'desc' ) { //倒序 $mentcountText .= --$mentcount . '楼'; } else { switch ($mentcount) { case 0: $mentcountText .= '<span>沙发!</span>'; ++$mentcount; break; case 1: $mentcountText .= '<span>板凳!</span>'; ++$mentcount; break; case 2: $mentcountText .= '<span>地板!</span>'; ++$mentcount; break; default: $mentcountText .= ++$mentcount . '楼'; break; } } $mentcountText .= '</div">'; } } extract($args, EXTR_SKIP); if ( 'div' == $args['style'] ) { $tag = 'div'; $add_below = 'ment'; } else { $tag = 'li'; $add_below = 'div-ment'; } ?> <<?php echo $tag ?> <?php ment_class(empty( $args['has_children'] ) ? '' : 'parent') ?> id="ment-<?php ment_ID() ?>"> <?php if ( 'div' != $args['style'] ) : ?> <div id="div-ment-<?php ment_ID() ?>" class="ment-body"> <?php endif; ?> <div class="ment-author vcard"> <?php if ($args['avatar_size'] != 0) echo get_avatar( $ment, $args['avatar_size'] ); ?> <?php printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_ment_author_link()) ?> </div> <?php if ($ment->ment_approved == '0') : ?> <em class="ment-awaiting-moderation"><?php _e('Your ment is awaiting moderation.') ?></em> <br /> <?php endif; ?> <div class="ment-meta mentmetadata"><a href="<?php echo htmlspecialchars( get_ment_link( $ment->ment_ID ) ) ?>"> <?php / translators: 1: date, 2: time / printf( __('%1$s at %2$s'), get_ment_date(), get_ment_time()) ?></a><?php edit_ment_link(__('(Edit)'),' ','' ); ?> </div> <?php ment_text() ?> <div class="reply"> <?php ment_reply_link(array_merge( $args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?> </div> <?php echo $mentcountText; //主评论楼层号 - by zwwooooo ?> <?php if ( 'div' != $args['style'] ) : ?> </div> <?php endif; ?> <?php }
样式就自己添加吧~~
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程