Wordpres随机缩略图教程

文章详情:

通常主题内没有缩略图会显示默认缩略图,如果一张图重复过多会影响美观

因此找了个随机图配置代码,顺便给大家分享!

优先级:特色图片、文章第一张图、最后就是随机缩略图了

操作步骤:

1.首先在主题目录下新建/images/random文件夹,再上传JPG图片并重命名为

1.JPG

2.JPG

3.JPG

以此类推...

2.复制以下代码粘贴到主题的functions.php文件中

//随机缩略图
function catch_first_image() 
{
  global $post, $posts;
  $first_img = '';

  //优先从特色图片获取
  if (has_post_thumbnail()) {
    $thumb_id = get_post_thumbnail_id();
    $thumb_url = wp_get_attachment_image_src($thumb_id,'full', true);
    $first_img = $thumb_url[0];
  }
  
  //如果特色图片不存在,则从文章内容中获取第一张图片
  if (empty($first_img)) {
    ob_start();
    ob_end_clean();
    $output = preg_match_all('/<img[^>]+src=["\']([^"\']+)[^>]*>/i', $post->post_content, $matches);
    $first_img = isset($matches[1][0]) ? $matches[1][0] : '';

    //如果第一张图不存在,则返回随机图片
    if(empty($first_img)) {
      $random = mt_rand(1, 3);
      $first_img = get_bloginfo('stylesheet_directory').'/images/random/'.$random.'.JPG';
    }
  }
  
  return $first_img;
}

3.将展示缩略图的地方添加以下调用代码

此隐藏内容仅限注册用户查看,请先

如未声明原创,均默认来自于网络,仅限学习和研究目的,本站无法保证完整性与准确性,均由用户自行测试并承担风险,请在下载后的24小时内删除!
THE END
分享
二维码
< <上一篇
下一篇>>