首页区块
2023.10.02更新,更加适配子比主题代码,用户榜显示用户认证、等级、会员
?食用教程
图标
下载图标附件上传至网站根目录
https://lichuyi.lanzoum.com/iMJue17zkqsd
核心代码
在主题的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');
}
?>
主题后台自定义头部HTML代码内引入JS
<script type='text/javascript' src='https://www.vxras.com/wp-content/themes/zibll/ranking.js'></script>
上传文件放置于主题目录下即可,需要配合本站排行榜页面一起使用,已打包整合,排行榜页面放置于pages
目录内
文章标题:子比主题美化 – 首页排行榜
文章链接:https://www.1001r.cn/1232.html
更新时间:2024年01月16日
站内部分内容由互联网用户自发贡献,该文观点仅代表作者本人。
本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请联系我们xiuzheng@1001c.cn我们将第一时间处理!