子比主题美化 – 热门推荐排行榜页面

子比主题美化 – 热门推荐排行榜页面-晨露资源网
最近更新2024年07月25日
资源编号15964

付费资源
子比主题美化 – 热门推荐排行榜页面

温馨提示:源码仅供学习研究!请勿商业使用!
郑重承诺:本站提供安全交易、信息保真!发布的付费资源收益均可提现!
5.5
限时特惠
9.9
VIP折扣
    折扣详情
开通VIP尊享优惠特权
升级会员
        【限时活动】注册账号即送本站大会员,每日更新的资源都是免费的,收积分只是增加博客活跃度,积分获取方法可在个人中心查看,积分不够可以投稿发布作品赚取积分。
.

核心代码

在主题的 func.php 中引入

//排行榜
function get_post_thumbnail_url($post_id) {
  $thumbnail_url = get_the_post_thumbnail_url($post_id, 'thumbnail');
  
  if (empty($thumbnail_url)) {
    $content = get_post_field('post_content', $post_id);
    
    if (strpos($content, '<img') !== false) {
      preg_match('/<img.+src=['"]([^'"]+)['"].*>/i', $content, $matches);
      
      if (!empty($matches[1])) {
        $thumbnail_url = $matches[1];
        
        // 验证缩略图URL是否有效
        if (!filter_var($thumbnail_url, FILTER_VALIDATE_URL)) {
          $thumbnail_url = '';
        }
      }
    }
  }
  
  return $thumbnail_url;
}

引入区块

主题目录下的 index.php 中引入以下代码,放置于 <?php get_footer(); 前

<?php
if (file_exists(get_theme_file_path('/Index_rankinglist.php'))) {
    require_once get_theme_file_path('/Index_rankinglist.php');
}
?>

引入JS

<script type='text/javascript' src='https://huliku.com/huliku/js/ranking.js'></script>

上传文件放置于主题目录下即可

温馨提示: 本文最后更新于2024-07-25 20:30:40,某些文章具有时效性,若有错误或已失效,请在下方留言或私信作者
本站源码模板仅供学习交流使用请勿商业运营,严禁从事违法,侵权等任何非法活动,否则后果自负!
© 版权声明
THE END
喜欢就点赞支持一下吧
点赞51 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容