在php中我们可以使用preg_match与preg_match_all来获取内容中所有图片地址。
第一步:在主题模板的function.php里添加下面的函数
代码如下 | 复制代码 |
//截取内容中第一张图片函数 function catch_that_image() { global $post, $posts; ob_start(); ob_end_clean(); preg_match('/<imgs[^<>]*?src=['"]([^'"<>]+?)['"][^<>]*?>/i', $post->post_content, $matche); if($matche[1]) return $matche[1]; //否则取默认图片 return 'default.gif'; } |
第二步:在wordpress需要调用缩略图的地方直接用这个函数调用,如下面例子
代码如下 | 复制代码 |
<img src="<?php echo catch_that_image(); ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" width="200px" height="200px" /> |
时间: 2024-09-11 12:51:48