如何使用wordpress为特定页面分配特定帖子?

时间:2011-12-05 17:02:45

标签: wordpress

我创建了分隔页面,上面写着“service.php”,代码为

<?php /* Template Name: services */ ?>
......//code
......

因此,上面的页面现在充当单独的静态页面。 现在我想在wordpress中为此服务页面指定特定帖子。

有可能吗?

请就此提出建议。

1 个答案:

答案 0 :(得分:1)

如果页面上没有其他查询...

...简单

<?php query_posts('p=5'); ?>

   <?php if (have_posts()) : ?>
      <?php while (have_posts()) : the_post(); ?>

         <!-- Do stuff here -->                 

      <?php endwhile; endif; ?>   
   <?php wp_reset_query(); ?>

如果说P = 5 - 那就是帖子ID号。