PHP Wordpress - 获取帖子的第一张图片(没有自定义字段)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress - 获取帖子的第一张图片(没有自定义字段)相关的知识,希望对你有一定的参考价值。
// Get URL of first image in a post
function catch_that_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];
// no image found display default image instead
if(empty($first_img)){
$first_img = "/images/default.jpg";
}
return $first_img;
}
// With TimThumb
<img src="/thumb.php?src=<?php echo catch_that_image() ?>&w=200&zc=1&q=200" alt="<?php the_title(); ?>"/>
以上是关于PHP Wordpress - 获取帖子的第一张图片(没有自定义字段)的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress;从帖子中获取第一张图片并显示它
PHP 从帖子中提取第一张图片(Wordpress)
PHP Wordpress - 仅在特定类别的第一页上显示精选帖子
php 从WordPress帖子获取第一段。
php 从WordPress帖子中获取第一段。
在 Jekyll 中,我如何获取帖子的第一张图片?