无自定义字段的自动WORDPRESS缩略图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无自定义字段的自动WORDPRESS缩略图相关的知识,希望对你有一定的参考价值。

This post will show you how to make your theme generate thumbnails automatically, based on your post’s first image. Uses timthumb to resize
  1. <?php
  2. // retreives image from the post
  3. function getImage($num) {
  4. global $more;
  5. $more = 1;
  6. $content = get_the_content();
  7. $count = substr_count($content, '<img');
  8. $start = 0;
  9. for($i=1;$i<=$count;$i++) {
  10. $imgBeg = strpos($content, '<img', $start);
  11. $post = substr($content, $imgBeg);
  12. $imgEnd = strpos($post, '>');
  13. $postOutput = substr($post, 0, $imgEnd+1);
  14. $image[$i] = $postOutput;
  15. $start=$imgEnd+1;
  16.  
  17. $cleanF = strpos($image[$num],'src="')+5;
  18. $cleanB = strpos($image[$num],'"',$cleanF)-$cleanF;
  19. $imgThumb = substr($image[$num],$cleanF,$cleanB);
  20.  
  21. }
  22. if(stristr($image[$num],'<img')) { echo $imgThumb; }
  23. $more = 0;
  24. }
  25. //retreive image ends
  26. ?>
  27.  
  28. <!--thumnailcode-->
  29. <div class="thumbnail">
  30. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
  31. <img src="<?php bloginfo('template_directory'); ?>/timthumb.php?src=<?php getImage('1'); ?>&w=150&h=150&zc=1">
  32. </a>
  33. </div>
  34.  
  35. <!--css-->
  36. .thumbnail a:link, .thumbnail a:visited {display:block; float:left; padding:5px; background:#e2e2e2; width:150px; height:150px; margin:5px 5px 0 0;}
  37. .thumbnail a:hover, .thumbnail a:active {background:#C4C4C4;}

以上是关于无自定义字段的自动WORDPRESS缩略图的主要内容,如果未能解决你的问题,请参考以下文章

自动将 300x300 图像设置为缩略图,这可能吗?

自定义字段-显示缩略图(并自动调整大小)

WordPress自动裁剪768w像素缩略图的解决办法

wordpress4.4+版本自动生成一个768w像素缩略图的解决办法

如何在 wordpress 中以编程方式显示自定义帖子类型的图像缩略图。?

wordpress后台启用自带的图片缩略功能