!
也想出现在这里? 联系我们
广告位

WordPress非正则获取文章第一张图片

网上流传的WordPress获取文章第一张图片作为缩略图的方法都是采用正则匹配抓取来实现的,代码如下:

function catch_that_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)){
$first_img = '/images/default.jpg';
}
return $first_img;
}

有人说这种方式效率太低,所以我写了第二种方法,首先通过get_children()函数来获取文章的第一张图片ID:

function get_first_image_ID($postID = '') {
global $post;
if( ! $postID ) $postID = $post-&gt;ID;
$thumbnail_id = '';
$args = array(
'numberposts' => 1,
'order'=> 'ASC',
'post_mime_type' => 'image/jpeg',
'post_parent' => $postID,
'post_status' => null,
'post_type' => 'attachment'
);
$attachments = get_children( $args );
if($attachments){
$thumbnail_id = key($attachments);
}
return $thumbnail_id;
}

以上函数如果在主循环中使用,不需要传递文章ID。

然后通过图片ID获取图片地址:

$thumbnail_src = wp_get_attachment_image_src($thumbnail_id, $size);
$img_url = $thumbnail_src[0];

$size参数指定缩略图版本,也就是图片大小。下面是输出缩略图的完整函数:

function bzg_thumbnail($size='post-thumbnails') {
global $post;
$width = '';
$height = '';
$img_url = get_bloginfo('template_url') . '/images/default-thumbnail.png';
if( has_post_thumbnail() ) {
$post_thumbnail_id = get_post_thumbnail_id( $post->ID );
} else {
$post_thumbnail_id = get_first_image_ID($post->ID);
}
if($post_thumbnail_id) {
$thumbnail_src = wp_get_attachment_image_src($post_thumbnail_id, $size);
$img_url = $thumbnail_src[0];
$width = ' width="' . $thumbnail_src[1] . '"';
$height = ' height="' . $thumbnail_src[2] . '"';
}
echo '<a href="' . get_permalink($post->ID) . '">';
echo '<img src="' . $img_url . '"' . $width . $height . ' alt="' . $post->post_title . '" />';
echo '&lt;/a>';
}

当指定了特色图像时,缩略图将输出特色图像,否则获取文章第一张图片作为缩略图,如果文章没有上传任何图片,则使用主题images目录里的default-thumbnail.png图片作为缩略图。

用本文方法获取缩略图,可以选择小尺寸版本图片,而正则的方式是输出原图,会对文章列表页访问速度造成一定影响。

给TA打赏
共{{data.count}}人
人已打赏
WordPress教程

WordPress编辑文章链接标签:edit_post_link

2021-4-15 5:29:11

WordPress教程

WordPress加载评论模板标签:comments_template

2021-4-15 17:29:33

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索