WordPress 获取文章内第一张图片为缩略图

 4 周前     9  

文章目录

如果你的站点文章数量很多,那么每一篇文章都要手动设置缩略图必然会是个繁杂的步骤,之前我们分享过一篇 《WordPress 文章随机显示缩略图的实现方法》

今天我们再来看看如何自动获取文章内第一张图片做为缩略图。

这将大大减少我们的工作量,的确是一个很好的小功能,喜欢的朋友可以自己试试。

使用方法

1、将下面代码添加到自己主题的 functions.php 文件。

//自动获取文章内第一张图片做为缩略图 function catch_first_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)){ //Defines a default image    $first_img = \"/wp-content/themes/um/img/default.png\";  }  return $first_img;}

2、将下面代码添加到需要获取缩略图的文章循环中即可。

<?php echo catch_first_image() ?>

 

版权声明:野路子 发表于 4 周前,共 583 字。
转载请注明:WordPress 获取文章内第一张图片为缩略图 | 野路子

您可能感兴趣的

暂无评论

暂无评论...