核心代码
在主题的 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>
上传文件放置于主题目录下即可
© 版权声明
1、本网站名称:严选资源大全
2、本站网址: 9xhua.com
3、本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
4、请用户仔细辨认内容的真实性,避免上当受骗 !
重要声明: 本站所有资源均来自互联网收集,本站大数据爬虫负责收集不承担任何版权问题。所有资源均不出售,只免费分享给本站等级用户!如果您发现本站上有侵犯您的知识产权的作品,请与我们取得联系,我们会及时修改或删除。
THE END