HotNews主题差异分类显示差异的随机缩略图

[摘要]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('/<img.+src=[\'"]([^\'"]+)[\'"].*>/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('/<img.+src=[\'"]([^\'"]+)[\'"].*>/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及图片文件夹名称。

Wordpress下载:

WordPress v3.5 RC2下载

HotNews主题差别分类显示差此外随机缩略图

界面预览

本文转自:

分享到

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/10024.html