1、修改:
ripro-v2ripro-v2incoptionstaxonomy-options.php
将注释去掉。如下:
2、后台分类中将自定义栏目缩略图开关打开
3、打开/wp-content/themes/ripro-v2/inc/template-tags.php
搜索:
根据模式输出缩略图img 延迟加载html标签
将下边代码:
if (!function_exists('_get_post_media')) {
function _get_post_media($post = null, $size = 'thumbnail',$video = true) {
if (empty($post)) {
global $post;
}elseif (is_numeric($post)) {
$post = get_post($post);
}
$_size_px = _get_post_thumbnail_size();
$src = _get_post_thumbnail_url($post, $size);
替换成:
if (!function_exists('_get_post_media')) {
function _get_post_media($post = null, $size = 'thumbnail',$video = true) {
if (empty($post)) {
global $post;
}
$category = get_the_category($post->ID);
$catid = $category[0]->term_id;
if (get_term_meta($catid, 'is_thumb_px', true)) {
$_size_px = get_term_meta($catid, 'thumb_px', true); //缩略图高度
}else{
$_size_px = _get_post_thumbnail_size();
}
$src = _get_post_thumbnail_url($post, $size);
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:115904045@qq.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明。