为了美观和提示功能,很多博客都会将文章首张图作为缩略图,除了插件外,也大都是通过在主题functions.php添加函数代码的方法来实现的。
实现首图作为缩略图的代码操作如下
第一步:在主题functions.php文件中添加以下代码:
function get_postthumb($this) {
preg_match_all( "/<[img|IMG].*?src=[\'|\"](.*?)[\'|\"].*?[\/]?>/", $this->content, $matches ); //通过正则式获取图片地址
if(isset($matches[1][0])){
$thumb = $matches[1][0];
}
return $thumb;
温馨提示! 你需要支付 ¥0.15 元后才能查看付费内容
发表评论 取消回复