我正在尝试创建一个动态网站,我有一个包含一些新闻的数据库,我想从帖子内容中获取第一张图片
使用wordpress将新闻添加到此数据库中,因为您知道wordpress图像位于post_content
内。
请您帮助我获取帖子的第一张图片并发送链接。
谢谢
答案 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() ?>