第一步:在主题模板的function.php里添加下面的函数,代码如下:
//截取内容中第一张图片函数
function catch_that_image() {
global $post, $posts;
ob_start();
ob_end_clean();
preg_match('/
if($matche[1])
return $matche[1];
//否则取默认图片
return 'default.gif';
}
第二步:在wordpress需要调用缩略图的地方直接用这个函数调用,如下面例子,代码如下: