最好使用以下代码创建页面模板。此外,您还需要决定是否使用标记或类别。下面的代码假定您使用的是类别。
<div class="news">
<?php
//The Query
wp_query(\'showposts=5&category_name=News\');
//The Loop
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="post_content">
<?php the_excerpt(); ?>
</div>
<?
endwhile;
endif;
//Reset Query
wp_reset_query();
?>
</div>
<div class="events">
<?php
//The Query
wp_query(\'showposts=5&category_name=Events\');
//The Loop
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="post_content">
<?php the_excerpt(); ?>
</div>
<?
endwhile;
endif;
//Reset Query
wp_reset_query();
?>
</div>