带有下一个/上一个帖子的页脚

时间:2013-08-21 作者:rwzdoorn

我正在寻找一些东西来创建一个多页脚与以前/未来的职位。页脚需要知道当前帖子是最新的(第一、第二和第三最新)、最旧的(第三、第二和最旧)还是介于两者之间。

例如:enter image description here

旧/新链接包括标题和;缩略图。

有人知道我怎样才能做到这一点吗?

1 个回复
SO网友:gmazzap

也许我不明白这个问题,对不起。

但是你就不能检索除当前帖子之外的最后6篇帖子吗?类似于:

global $post;

$footer_posts = wp_get_recent_posts( array(\'post_status\' => \'publish\', \'posts_per_page\' => \'6\', \'exclude\' => $post->ID), 1 );

if ( ! empty($footer_posts) ) { foreach ( $footer_posts as $post ) {
  setup_postdata($post);
  echo \'<div style="float:left; margin-left:20px;">\';
  echo \'<a href="\' . get_permalink() . \'">\';
  the_post_thumbnail(\'thumb\');
  echo \'<br /><h4 style="text-align:center;">\' . get_the_title() . \'</h4></a>\';
  echo \'</div>\';
} }

wp_reset_postdata();

结束

相关推荐

如何更改NEXT_POSTS_LINK()返回的URL?

我正在将WordPress博客集成到我现有的公文包test中。我的网站。com。测试时会出现WordPress默认的二十一博客。我的网站。com/blog/。我想将WordPress功能集成到我现有的公文包中,所以我在测试时创建了一个页面。我的网站。com/blog。php。我刚刚在博客页面中添加了下一页/上一页功能。My problem is that the next_posts_link() function does not return the correct URL. 使用我的公文包布局的博客