hotnews主题不同分类显示不同的随机缩略图
来源: 阅读:720 次 日期:2016-06-14 15:00:01
温馨提示: 小编为您整理了“hotnews主题不同分类显示不同的随机缩略图”,方便广大网友查阅!

hotnews主题集成的随机缩略图本来是为懒人准备的,可能有童鞋感觉,不同的分类内容都显示相同的随机缩略图,有些不搭调,如果博客日志较多,文章中又无图片,重新编辑添加图片工作量又太大,来个折中的办法,改动一下随机缩略图调用函数,让不同的分类显示不同的随机缩略图。

首先,在hotnews主题images目录新建名称为:random1、random2、random3.........文件夹,并在其中放置不同的随机缩略图片,图片名称必须是连续的。

其次,打开主题functions.php模版,找到:

//支持外链缩略图

if ( function_exists('add_theme_support') )

add_theme_support('post-thumbnails');

/*catch first image (post-thumbnail fallback) */

function catch_first_image() {

global $post, $posts;

$first_img = '';

ob_start();

ob_end_clean();

$output = preg_match_all('//i', $post->post_content, $matches);

$first_img = $matches [1] [0];

if(empty($first_img)){ //defines a default image

$random = mt_rand(1, 20);

echo get_bloginfo ( 'stylesheet_directory' );

echo '/images/random/'.$random.'.jpg';

}

return $first_img;

}

替换为:

//支持外链缩略图

if ( function_exists('add_theme_support') )

add_theme_support('post-thumbnails');

/*catch first image (post-thumbnail fallback) */

function catch_first_image() {

global $post, $posts;

$first_img = '';

ob_start();

ob_end_clean();

$output = preg_match_all('//i', $post->post_content, $matches);

$first_img = $matches [1] [0];

if(empty($first_img)){ //defines a default image

$random = mt_rand(1, 20);

echo get_bloginfo ( 'stylesheet_directory' );

if ( is_category( '472' ) ) {

echo '/images/random1/'.$random.'.jpg';

} elseif ( is_category( '473' ) ) {

echo '/images/random2/'.$random.'.jpg';

} elseif ( is_category( '474' ) ) {

echo '/images/random3/'.$random.'.jpg';

}

}

return $first_img;

}

其中:

数字20是随机缩略图数量,根据实际自行修改。

修改上面代码类似“ is_category( '472' )”中数字为相应的分类id号

random3是图片文件夹的名称

如果分类较多,可以多复制几个:

elseif ( is_category( '474' ) ) {

echo '/images/random3/'.$random.'.jpg';

}

同样要修改其中的分类id及图片文件夹名称。

更多信息请查看 CMS教程
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
相关阅读 CMS教程
关于我们| 联系我们| 人才招聘| 网站声明| 网站帮助| 非正式的简要咨询| 简要咨询须知| 加入群交流| 手机站点| 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:
咨询QQ:526150442(9:00—18:00) 版权所有:
云南网警报警专用图标
Baidu
map