一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

Wordpress自动提取内容中第一张图片作缩略图详解

时间:2013-06-07 编辑:简简单单 来源:一聚教程网

在php中我们可以使用preg_match与preg_match_all来获取内容中所有图片地址。


第一步:在主题模板的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(); ?>

热门栏目