欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > wordpress教程 >
wordpress教程

wordpress 列表页调用缩略图 调用文章第一个图片

(元素模板) / 2022-03-05 16:16
wordpress 如何 调用 文章第一个图片?

首先在    functions.php加入下面代码

 

function get_first_image() {
global $post;
$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 = bloginfo('template_url') . "/nopic.gif";
};
return $first_img;
}

最后在模板里面加入
<?php if ( has_post_thumbnail() ) { 
the_post_thumbnail(array(296,296),array('alt'=> trim(strip_tags( $post->post_title ))));}
  else {?>
  <img src='<?php echo get_first_image(); ?>' alt='<?php the_title(); ?>'  /><?php }?>

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com