我的分页链接无法正常工作,甚至无法显示。我已经尝试了代码的几种变体,但这里是我在家里的。php:
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="blog">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<!--?php the_ID(); ?-->">
<div class="post_meta">
<h2><a href="<!--?php the_permalink() ?-->" rel="bookmark" title="Permanent Link to
<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="post_date"><?php the_time(\'F jS, Y\') ?></p>
</div><!-- end blog_meta -->
<div class="post">
<?php the_content(\'Read the rest of this entry »\'); ?>
<img src="<?php bloginfo(\'template_directory\'); ?>/img/dots_small.png" class="divider" alt="post divider">
</div><!-- end post -->
<div class="pagination">
<?php
previous_post_link(\'<span class="left">« %link</span>\');
next_post_link(\'<span class="right">%link »</span>\');
?>
</div><!-- end pagination -->
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn\'t here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div><!-- end blog -->
<?php get_footer(); ?>