您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
wordpress实现用外链图片作为文章缩略图的方法
李恩妙2023-07-13 11:39:45WordPress教程已有人查阅
导读1、要有一个确定图片地址的方法:文章中的 头一张图片,或者使用自定义栏目增加一个自定义值。2、在前台调用确定好的图片:采用函数的方法还是直接调用图片。
思路:
1、要有一个确定图片地址的方法:文章中的 头一张图片,或者使用自定义栏目增加一个自定义值。
2、在前台调用确定好的图片:采用函数的方法还是直接调用图片。
实现如下:
前提:
任何调用好都是在LOOP循环中,这样可以轻松的使用$post值。
1、调用文章中的 头一张图片:使用$post->post_content获得文章内容,然后用匹配的方法得到 头一张图片的src值。
preg_match('/<img.+src=['"]([^'"]+)['"].* />/i',$post->post_content,$index_piclink);
if(count($index_piclink) >= 2)$image_src = $index_piclink[1];
if(!strstr($image_src,'http://'))$image_src = false;
2、调用一个自定义栏目:在写文章的时候,增加一个名词为post_thumb的自定义栏目,然后将图片的地址作为值建立它。如meta_key:post_thumb,meta_value:http:// .utubon.com/images/logo.png
,然后通过以下的方法调用它:
$image_src = get_post_meta($post->ID,'post_thumb',true);
$image_src = trim($image_src) !== '' ? trim($image_src) : false;
3、在文章循环中使用它们
if($image_src)echo '<img src="'.$image_src.'" />';
4、把他们做成函数
function get_thumb_src($size = 'thumbnail',$first_pic_in_ctonte = true){
global $post;
$image_src = '';
if(function_exists('has_post_thumbnail') && has_post_thumbnail()){
$image_id = get_post_thumbnail_id();
$image_src = wp_get_attachment_image_src($image_id,$size);
$image_src = $image_src[0];
}else{
$image_src = get_post_meta($post->ID,'post_thumb',$single=true);
if(!$image_src && $first_pic_in_ctonte){
preg_match('/<img.+src=['"]([^'"]+)['"].* />/i',$post->post_content,$index_piclink);
if(count($index_piclink) >= 2)$image_src = $index_piclink[1];
if(!strstr($image_src,'http://'))$image_src =false;
}
}
return $image_src;
}
function the_thumb_src($size = 'thumbnail',$first_pic_in_ctonte = true){
echo get_thumb_src($size,$first_pic_in_ctonte);
}
这个函数(把它放在functions.php中)实现了对文章缩略图的挑选,如果已经有特色图片,则使用特色图片,如果没有就检查post_thumb自定义栏目,如果也没有就使用文章 头一张图片,如果文章没有图片,就返回false值。在使用时如下:
if(get_thumb_src())the_thumb_src();
本文标签:
很赞哦! ()
相关文章
随机图文
-
wordpress添加导航分类菜单的方法
样式化导航菜单非常简单,你只需要对 current-menu-item 和 current-menu-parent 这两个 Class 进行定义即可。 -
WordPress评论中怎么嵌入图片
有时发表评论需要添加图片,而WordPress本身并不具备评论贴图功能,可以将下面的代码添加到当前主题functions.php文件中: -
wordpress主题怎么在本地安装,本地安装wordpress主题的方法
首先是确认XAMPP的Apache和MysqL是否已经运行,没有运行的点击“Start”;现在打开Wordpress登录;进入Wordpress后台后,在“外观”当中的“主题”可以看到当前已经使用的主题 -
wordpress更新方法介绍,wordpress怎么更新
为什么要更新?升级就是一个让wordpress更加 的过程,每一次升级都是对上一个版本的补充。所以 要及时更新。
留言与评论 (共有 条评论) |