在Wordpress上,如何在主页上显示最新帖子(仅限一个),包括全文,评论和所有内容?
我基本上希望主页成为最新的帖子,好像我点击它并获得了帖子网址(例如:domain/wordpress/?p=18
)。
答案 0 :(得分:1)
这就是我要做的事情:
这应该可以解决问题,但如果它不适合您,请告诉我。 :)
答案 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;