wordpress怎样调用文章缩略图

2025-01-03 03:02:05
推荐回答(1个)
回答1:

第一步:在主题模板的function.php里添加下面的函数,代码如下:

//截取内容中第一张图片函数 
function catch_that_image() { 
global $post, $posts; 
ob_start(); 
ob_end_clean(); 
preg_match('/]*?src=['"]([^'"<>]+?)['"][^<>]*?>/i', $post->post_content, $matche); 
if($matche[1]) 
return $matche[1]; 
//否则取默认图片 
return 'default.gif'; 
}

第二步:在wordpress需要调用缩略图的地方直接用这个函数调用,如下面例子,代码如下:

<?php the_title(); ?>