回答:
私はあなたのために簡単な小さな例をコード化しました。WPループの最初と最後の投稿を取得する方法を説明する必要があります。
$post_count = 0;
$total = count($posts);
while (have_posts()) : the_post();
if ($post_count == 1 AND $post_count !== $total)
{
// This is the first post
}
if ($post_count == $total)
{
// This is the last item
}
$post_count++;
endwhile;
if (!get_next_post_link()) {
echo 'the last post here';
}