我目前正在使用此代码获取上一个和下一个帖子链接和缩略图
<?php $prevPost = get_previous_post(true);
if($prevPost) {?>
<div class="nav-box previous" style="float:left;">
<?php $prevthumbnail = catch_that_image($prevPost->ID, array(100,100) );}?>
<?php previous_post_link('%link',"$prevthumbnail %title", TRUE); ?>
</div>
<?php $nextPost = get_next_post(true);
if($nextPost) { ?>
<div class="nav-box next" style="float:right;">
<?php $nextthumbnail = catch_that_image($nextPost->ID, array(100,100) ); } ?>
<?php next_post_link('%link',"$nextthumbnail %title", TRUE); ?>
</div>
但我想将帖子的第一张图片作为缩略图,而不是特色图片。
我发现这段代码可以获取当前帖子的第一张图片,但是如何将它与上面的代码一起使用来获取上一篇文章或下一篇文章的第一张图片?
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];
return $first_img;
}