我有以下代码:
<?php
/*
Template Name: blog
*/
?>
<?php get_header(); ?>
<div id="blog">
<div class="content">
<?php query_posts(\'cat=-4,-11\');?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<span class="date"><?php the_time(\'F jS, Y\'); ?></span>
<div class="body">
<?php the_content(\'\'); ?>
</div>
<span class="info">posted by: <?php the_author(); ?> in <?php the_category(\', \'); ?> | <?php comments_popup_link(\'No Comments\', \'1 Comment\', \'% Comments\'); ?></span>
</div>
<?php endwhile; endif; ?>
<?php posts_nav_link(\' · \', \'« previous page \', \' <br />next page » \'); ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
此模板中仅需要页面导航。