下一篇文章的特色图片链接?

时间:2011-09-08 作者:Jezthomp

你好,我想知道是否有人知道这是可能的?

帖子特色图片点击查看下一篇帖子。。。?

例如

<a href="next-post">
 <?php the_post_thumbnail(\'post-thumbnails\'); ?>
</a>
我认为这是WordPress分页的结果,因为当它到达最后一篇文章/图片时,需要返回到第一篇。

能不能做到?

1 个回复
SO网友:Milo

像这样的东西应该适合你的单身。php模板:

<?php
$next_post = get_adjacent_post( false,\'\',false );
if( isset($next_post->ID) ):
    $next_id = $next_post->ID;
else:
    $next_post = new WP_Query( \'posts_per_page=1&post_type=photo&order=ASC\' );
    $next_id = $next_post->post->ID;
endif;
?>
    <a href="<?php echo get_permalink( $next_id ); ?>">
        <?php echo get_the_post_thumbnail( $next_id, \'thumbnail\' ); ?>
    </a>

结束

相关推荐