WordPress“Next Post”URL和缩略图

时间:2015-06-14 作者:Alexey Tseitlin

我是个疯子。构建我的新主题。我只需要获得3个单独的数据:

$image=直接链接到下一个帖子缩略图图像(仅链接)$name=下一个帖子名称previous / next post with thumbnail 对我不起作用。。。。

感谢您的帮助)

1 个回复
SO网友:Robert hue

您可以使用get_adjacent_post 用于检索该数据的函数。此函数用于检索相邻立柱。可以是下一篇文章,也可以是上一篇文章。

For previous post

<?php

  $prevpost = get_adjacent_post( false, \'\', true, \'category\' );

  $image = get_the_post_thumbnail( $prevpost );
  $name = get_the_title( $prevpost );
  $url = get_permalink( $prevpost );

?>

For next post

<?php

  $nextpost = get_adjacent_post( false, \'\', false, \'category\' );

  $image = get_the_post_thumbnail( $nextpost );
  $name = get_the_title( $nextpost );
  $url = get_permalink( $nextpost );

?>

结束

相关推荐