我正在开发一个wordpress,其中包括一个用于显示新闻的首页和一个帖子页面。
据我了解,Post Page 使用的模板是 index.php,但 index.php 也被其他页面使用。
问题是我想为帖子创建一个特殊的页面,标题是新闻等,但我不希望其他页面使用该模板。有没有办法创建一个仅用于显示帖子的替代 index.php (index_news.php)?
这样我就可以将 index_news.php 用于帖子,将 index.php 用于其他所有内容。
谢谢
编辑 //////////
我的第一个选择是创建一个包含循环的新页面模板(news.php),然后在 wordpress 选项中,将帖子定位到该新页面(news.php)。
但是当我这样做时,它会加载 index.php 而不是 news.php 模板。也许是循环有问题。这是我正在使用的循环:
<!-- Start the Loop. -->
<div class="post">
<!-- Display the Title as a link to the Post's permalink. -->
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<!-- Display the date (November 16th, 2009 format) and a link to other posts by this posts author. -->
<small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small>
<!-- Display the Post's content in a div box. -->
<div class="entry">
<?php the_content(); ?>
</div>
<!-- Display a comma separated list of the Post's Categories. -->
<p class="postmetadata">Posted in <?php the_category(', '); ?></p>
</div> <!-- closes the first div box -->
<!-- Stop The Loop (but note the "else:" - see next line). -->
<?php endwhile; else: ?>
<!-- The very first "if" tested to see if there were any Posts to -->
<!-- display. This "else" part tells what do if there weren't any. -->
<p>Sorry, no posts matched your criteria.</p>
<!-- REALLY stop The Loop. -->