我有一个名为“主页”的页面,它被设置为我网站的首页,但我希望它在底部显示最近的一两篇博客文章。我有一些PHP可以从另一个站点执行此操作
<?php
query_posts(\'showposts=1\');
while (have_posts()): the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(\'Read the rest of this entry »\'); ?>
<p><a href="<?php echo $siteroot .\'/blog/\' ?>">Go to the Blog...</a></p>
<?php endwhile; ?>
但我不知道该把它放在哪里,所以它只显示在这一页上,因为
is_home()
返回页的false。