从帖子中获取第一个图片网址?

时间:2011-08-10 16:28:49

标签: php wordpress

我正在尝试创建一个动态网站,我有一个包含一些新闻的数据库,我想从帖子内容中获取第一张图片 使用wordpress将新闻添加到此数据库中,因为您知道wordpress图像位于post_content内。

请您帮助我获取帖子的第一张图片并发送链接。

谢谢

1 个答案:

答案 0 :(得分:6)

将它放在你的functions.php文件中:

function get_first_image() {
    global $post, $posts;
    $first_img = '';
    ob_start();
    ob_end_clean();
    $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
    $first_img = $matches [1] [0];

    if(empty($first_img)){ //Defines a default image
        $first_img = "/images/default.jpg";
    }
    return $first_img;
}

然后只需调用您需要的页面上的函数来获取帖子的第一个图像,如下所示:

<?php echo get_first_image() ?>