在特定页面下显示帖子

时间:2010-12-02 13:02:50

标签: wordpress

我有很多页面,我想在一个特定页面下显示一些特定的帖子。 例如,在新闻页面下,我只需显示与新闻相关的帖子

怎么做?

1 个答案:

答案 0 :(得分:1)

这是一个新查询,不会影响主Wordpress循环,可以在页面上多次使用。将参数更改为您的类别名称和要显示的帖子数量。在页面模板或页面编辑器中使用,启用php执行。

<?php $my_query = new WP_Query('category_name=mycategory&showposts=1'); ?>

<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>

<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">

<?php the_title(); ?></a>

<?php the_content(); ?>

<?php endwhile; ?>