子比主题博客加个底部导航教程

效果图:(本是夕阳首发,但是按照夕阳的教程现在搞起来有点瑕疵,整理了一份更加通俗易懂的)

图片[1]-子比主题博客加个底部导航教程-梦都歌-精品资源社区,梦都歌资源网

教程开始:

第一步

打开自己网站下的/wp-content/themes/zibll/funactions.php文件,然后把下面的代码加入到文件内。

//获取评论数量
function zfunc_comments_users($postid=0,$which=0) {
  $comments = get_comments('status=approve&type=comment&post_id='.$postid); //获取文章的所有评论
  if ($comments) {
    $i=0; $j=0; $commentusers=array();
    foreach ($comments as $comment) {
      ++$i;
      if ($i==1) { $commentusers[] = $comment->comment_author_email; ++$j; }
      if ( !in_array($comment->comment_author_email, $commentusers) ) {
        $commentusers[] = $comment->comment_author_email;
        ++$j;
      }
    }
    $output = array($j,$i);
    $which = ($which == 0) ? 0 : 1;
    return $output[$which]; //返回评论人数
  }
  return 0; //没有评论返回0
};
// 随机文章
function random_posts(
    $posts_num=5,$before='<li>',$after='</li>'){
    global $wpdb;
    $sql = "SELECT ID, post_title,guid
            FROM $wpdb->posts
            WHERE post_status = 'publish' ";
    $sql .= "AND post_title != '' ";
    $sql .= "AND post_password ='' ";
    $sql .= "AND post_type = 'post' ";
    $sql .= "ORDER BY RAND() LIMIT 0 , $posts_num ";
    $randposts = $wpdb->get_results($sql);
    $output = '';
    foreach ($randposts as $randpost) {
        $post_title = stripslashes($randpost->post_title);
        $permalink = get_permalink($randpost->ID);
        $output .= $before.'<a class="item-foot" href="'
            . $permalink . '"  rel="bookmark" data-toggle="tooltip" data-original-title="随机文章:';
        $output .= $post_title . '"><svg class="icon" aria-hidden="true"><use xlink:href="#iconlianjie"></use></svg><span id="wz">' . $post_title . '</span></a>';
        $output .= $after;
    }
    echo '<div id="footgundong" class="wz"><ul>'.$output.'</ul></div>';
}
//弹窗提醒
function dorzs() {  
echo '<script src="https://21lhz.cn/cdn/js/sweetalert.min.js"></script>';
echo '<script src="https://21lhz.cn/cdn/css/sweetalert.css"></script>'; 
echo '<script>$(document).on("click","#dorzs",function(){swal({title:"发工资啦",text:"哇!夕阳超级开心的!!",icon:"请放入图片",buttons:{weixin:{text:"微信",value:"weixin",},zfb:{text:"支付宝",value:"zfb",},dsmd:{text:"打赏名单",value:"dsmd",},},}).then(function(value){if(value=="weixin"){swal({title:"感谢打赏!",text:"感谢您的微信打赏,我会努力做得更好!",button:false,icon:"微信收款二维码"});}else if(value=="zfb"){swal({title:"感谢打赏!",text:"感谢您的支付宝打赏,我会努力做得更好!",button:false,icon:"支付宝收款二维码"});}else if(value=="dsmd"){swal({title:"打赏名单",text:"【打赏名单未开放】",icon:"图片",button:false,});}});});</script>';  
}  
add_action( 'wp_footer', 'dorzs', 100 );
//点赞统计
function dz($post_id){
    global $wpdb;
    $sql = "SELECT SUM(`meta_value`) as num FROM `wp_postmeta` WHERE `meta_key`='like' AND `post_id`=$post_id";
    $results = $wpdb->get_results($sql);
    echo  $results[0]->num;
}

第二部

打开自己网站下的 /wp-content/themes/zibll/footer.php文件,在 </footer> 下面添加下方代码。

<!--底部导航-->
<div class="footwaveline">
    <i style="background-image: url(图1);display: inline-block;width: 210px;height: 120px;position: fixed;bottom: 0;z-index: 110;background-size: 100%;"></i>
    <div style="background: url(图2) 0 0 repeat-x;height: 3px;width: 100%;position: fixed;background-size: 10px 3px;z-index: 98;bottom: 40px;"></div>
    <div id="shi" style="position: fixed;bottom: 0;margin-left: 200px;z-index: 99;">
    <h4 class="my-face" style="font-size:13px;margin:0 5px 2px 5px;color:#797979;margin-bottom: 10px;">宝剑锋从磨砺出,梅花香自苦寒来</h4>
    </div>
  <div style="width: 100%;height: 40px;position: fixed;bottom: 0;z-index: 97;box-shadow: 0 -2px 10px rgb(0 0 0 / 10%);background:#fff;">
    <nav class="joe_header__below-logon" style="float: right;margin-right: 50px;">
      <?php 
          if (!is_single()) {
            echo random_posts()." <span class=\"wz-span\">随机推荐</span>";
        }
        if(is_single()){
      ?>
      <span style="margin-left:20px;">
        <a href="javascript:(scrollTo('#comments',-100));" data-toggle="tooltip" data-original-title="评论">
          <svg class="icon" aria-hidden="true"><use xlink:href="#icon-pinglun2"></use></svg><span style="color:var(--minor);">评论(<count><?php echo zfunc_comments_users($post->ID); ?></count>)</span>
        </a>
      </span>                
      <span style="margin-left:20px;display: inline-block;">
        <a href="javascript:(scrollTo('#comments',-1000));" data-toggle="tooltip" data-original-title="点赞">
          <svg class="icon" aria-hidden="true"><use xlink:href="#icon-dianzan2"></use></svg>点赞(<?php echo dz($post->ID)?>)
        </a>
      </span>
      <span style="margin-left:20px;line-height: 45px;">
        <a class="share-btn poster" poster-share="<?php the_ID();?>" title="分享海报" href="javascript:;">
          <svg class="icon" aria-hidden="true"><use xlink:href="#icon-fasong"></use></svg>分享
        </a>
      </span>
            <span style="margin-left:20px;line-height: 45px;" class="zs">
                <a id="dorzs" data-toggle="tooltip" data-original-title="赞赏">
                    <svg class="icon" aria-hidden="true"><use xlink:href="#icon-qianbao2"></use></svg>赞赏
                </a>
            </span>
      <?php } ?>
      <span style="margin-left:20px;line-height: 45px;">
        <a href="javascript:void(0);" onclick="javascript:addshoucang()" data-toggle="tooltip" title="收藏本站">
          <svg class="icon" aria-hidden="true"><use xlink:href="#icon-wancheng"></use></svg>收藏本站
        </a>
      </span>
      <a style="margin-left:20px;" href="javascript:(scrollTo());" id="percentage" data-toggle="tooltip" data-original-title="返回顶部">
        <svg class="icon" aria-hidden="true"><use xlink:href="#icon-tishi"></use></svg>0%
      </a>
    </nav>
  </div>
</div>
<!--底部导航-->

第三步

进入后台>子比主题设置>自定义代码>自定义头部HTML代码添加以下代码

<!-- 引入VUE -->
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.min.js"></script>
<!-- 引入样式 -->
<script src="https://cdn.jsdelivr.net/npm/element-ui@2.15.6/lib/index.js"></script>
<!-- 引入组件库 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/element-ui@2.15.6/packages/theme-chalk/lib/index.css">
<!--寒阳社区自用阿里巴巴图标库-->
<script src="//at.alicdn.com/t/c/font_3673004_l6ghs3almxn.js"></script>

第四步

进入后台>子比主题设置>自定义代码>自定义CSS添加以下代码

第五步

进入后台>子比主题设置>自定义代码>自定义javascript添加以下代码

20231114115448114-图片.zip
zip文件
63.5K
免费下载和付费下载区别:
PS:本站所有资源均可以免费下载(免费和付费唯一区别就是下载速度不同)
免费下载链接为低速下载通道
付费下载链接为多线程高速下载通道
温馨提示:本文最后更新于2024-08-07 15:49:22,某些文章具有时效性,若有错误或已失效,请在下方留言或联系梦歌社长
子比主题博客加个底部导航教程-梦都歌-精品资源社区,梦都歌资源网
子比主题博客加个底部导航教程
此内容为付费阅读,请付费后查看
星梦元3
立即购买
您当前未登录!建议登陆后购买,可保存购买订单
付费阅读
© 版权声明
THE END
喜欢就支持一下吧
点赞6赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容