0
我已創建分離頁說:「service.php」與下面的代碼如何使用wordpress爲特定頁面分配特定帖子?
<?php /* Template Name: services */ ?>
......//code
......
所以上面的頁面現在作爲獨立的靜態頁面。 現在我想爲wordpress中的此服務頁面分配特定的帖子。
有沒有可能這樣做?
請在此建議。
我已創建分離頁說:「service.php」與下面的代碼如何使用wordpress爲特定頁面分配特定帖子?
<?php /* Template Name: services */ ?>
......//code
......
所以上面的頁面現在作爲獨立的靜態頁面。 現在我想爲wordpress中的此服務頁面分配特定的帖子。
有沒有可能這樣做?
請在此建議。
如果沒有其他querys在頁面上...
簡單...
<?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號。