在使用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
暂无评论内容