WordPress主题自动获取文章第一张图片作为缩略图

在使用WordPress网站发布文章的时候需要手动设置一张缩略图(特色图片)很麻烦,实现自动获取文中图片为缩略图,只需要把下面的代码放到您的主题functions.php文件中即可:

/*自动获取wordpress日志中的第一张图片作为缩略图*/
function get_content_first_image($content){
    if ( $content === false ) $content = get_the_content();
 
    preg_match_all('|<img.*?src=[\'"](.*?)[\'"].*?>|i', $content, $images);
 
    if($images){      
        return $images[1][0];
    }else{
        return false;
    }
}

 

© 版权声明
THE END
請多多支持
点赞13
评论 抢沙发

    暂无评论内容