現在、このコードを使用して、前と次の投稿のリンクとサムネイルを取得しています
<?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;
}