如何在主页上显示最新帖子(仅限一个),全文,评论等等?

时间:2011-02-16 21:17:38

标签: wordpress post

在Wordpress上,如何在主页上显示最新帖子(仅限一个),包括全文,评论和所有内容?

我基本上希望主页成为最新的帖子,好像我点击它并获得了帖子网址(例如:domain/wordpress/?p=18)。

3 个答案:

答案 0 :(得分:1)

这就是我要做的事情:

  • 在您的WordPress管理面板中,在 单击边栏中的设置,单击 读取。
  • 确保下面的顶部单选按钮 首页显示(“你最新的 帖子“)被选中。
  • 现在更改框中的数字 将“博客页面最多显示”改为1。
  • 现在,请确保“全文” “为每个人”旁边的单选按钮 Feed中的文章显示“已被选中。

这应该可以解决问题,但如果它不适合您,请告诉我。 :)

答案 1 :(得分:1)

谢谢你的回复。我做了你所建议的TheLibzter :-) windyjonas,你的回答是偏右的。最终的诀窍是:

<?php query_posts(); ?>
 <?php while (have_posts()) : the_post(); ?>
  <div class="post" id="post-<?php the_ID(); ?>">
   <h2>
     <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
      <?php the_title(); ?>
     </a>
   </h2>
   <div class="entry"><?php the_content(); ?></div>
  </div>
<?php endwhile; ?>
<?php
  global $withcomments; $withcomments = true;
  comments_template( '', true );
?>

答案 2 :(得分:0)

从home.php重定向:

if (have_posts()):
    while (have_posts()):
        the_post();
        wp_redirect(get_permalink());
    endwhile;
endif;