服务器之家:专注于服务器技术及软件下载分享
分类导航

DEDECMS|帝国CMS|Discuz|PHPCMS|Wordpress|ZBLOG|ECSHOP|苹果CMS|极致CMS|CMS系统|

服务器之家 - 建站程序 - Wordpress - wordpress怎么使用外链图片作为文章缩略图

wordpress怎么使用外链图片作为文章缩略图

2020-06-19 22:58wpmee Wordpress

思路: 1、要有一个确定图片地址的方法:文章中的第一张图片,或者使用自定义栏目增加一个自定义值。 2、在前台调用确定好的图片:采用函数的方法还是直接调用图片。 实现如下: 前提: 任何调用最好都是在LOOP循环中,这

思路:

1、要有一个确定图片地址的方法:文章中的第一张图片,或者使用自定义栏目增加一个自定义值。

2、在前台调用确定好的图片:采用函数的方法还是直接调用图片。

实现如下:

前提:

任何调用最好都是在LOOP循环中,这样可以轻松的使用$post值。

1、调用文章中的第一张图片:使用$post->post_content获得文章内容,然后用匹配的方法得到第一张图片的src值。

  1. preg_match('/<img.+src=[\'\"]([^\'\"]+)[\'\"].* \/>/i',$post->post_content,$index_piclink); 
  2.  
  3. if(count($index_piclink) >= 2)$image_src = $index_piclink[1]; 
  4.  
  5. if(!strstr($image_src,'http://'))$image_src = false

2、调用一个自定义栏目:在写文章的时候,增加一个名词为post_thumb的自定义栏目,然后将图片的地址作为值建立它。如meta_key:post_thumb,meta_value:http://www.utubon.com/images/logo.png,然后通过以下的方法调用它:

  1. $image_src = get_post_meta($post->ID,'post_thumb',true); 
  2. $image_src = trim($image_src) !== '' ? trim($image_src) : false

3、在文章循环中使用它们

  1. if($image_src)echo '<img src="'.$image_src.'" />'

4、把他们做成函数

  1. function get_thumb_src($size = 'thumbnail',$first_pic_in_ctonte = true){ 
  2.  
  3. global $post; 
  4.  
  5. $image_src = ''
  6.  
  7. if(function_exists('has_post_thumbnail') && has_post_thumbnail()){ 
  8.  
  9. $image_id = get_post_thumbnail_id(); 
  10.  
  11. $image_src = wp_get_attachment_image_src($image_id,$size); 
  12.  
  13. $image_src = $image_src[0]; 
  14.  
  15. }else
  16.  
  17. $image_src = get_post_meta($post->ID,'post_thumb',$single=true); 
  18.  
  19. if(!$image_src && $first_pic_in_ctonte){ 
  20.  
  21. preg_match('/<img.+src=[\'\"]([^\'\"]+)[\'\"].* \/>/i',$post->post_content,$index_piclink); 
  22.  
  23. if(count($index_piclink) >= 2)$image_src = $index_piclink[1]; 
  24.  
  25. if(!strstr($image_src,'http://'))$image_src =false
  26.  
  27.  
  28.  
  29. return $image_src; 
  30.  
  31.  
  32. function the_thumb_src($size = 'thumbnail',$first_pic_in_ctonte = true){ 
  33.  
  34. echo get_thumb_src($size,$first_pic_in_ctonte); 
  35.  

这个函数(把它放在functions.php中)实现了对文章缩略图的挑选,如果已经有特色图片,则使用特色图片,如果没有就检查post_thumb自定义栏目,如果也没有就使用文章第一张图片,如果文章没有图片,就返回false值。在使用时如下:

  1. if(get_thumb_src())the_thumb_src(); 

以上就是wordpress怎么使用外链图片作为文章缩略图的详细内容,更多请关注网站的其它相关文章!

延伸 · 阅读

精彩推荐