![图片[1]-子比主题美化 – 热门推荐排行榜页面-小哥网](https://static.xge6.com/wp-content/uploads/2024/07/f03598542720240701223335-1024x526.jpg?imageMogr2/format/webp/interlace/1/quality/100)
核心代码
在主题的 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;}//排行榜 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; }//排行榜 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();
前
<?phpif (file_exists(get_theme_file_path('/Index_rankinglist.php'))) {require_once get_theme_file_path('/Index_rankinglist.php');}?><?php if (file_exists(get_theme_file_path('/Index_rankinglist.php'))) { require_once get_theme_file_path('/Index_rankinglist.php'); } ?><?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><script type='text/javascript' src='https://huliku.com/huliku/js/ranking.js'></script><script type='text/javascript' src='https://huliku.com/huliku/js/ranking.js'></script>
上传文件放置于主题目录下即可
© 版权声明
子比主题美化 – 热门推荐排行榜页面-小哥网
本文链接:https://www.xge6.com/ymjd/181862/
THE END
暂无评论内容