|
楼主 |
发表于 2009-5-9 18:23:49
|
显示全部楼层
- <?php get_header(); ?>
- <div id="content">
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
- <div class="entry">
- <div class="post" id="post-<?php the_ID(); ?>">
- <div class="head">
- <div class="date"><h5><?php the_time('M. j, Y'); ?></h5></div>
- <div class="title"><h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
- </div></div><?php the_content('Read the rest of this entry »'); ?>
- <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
- <h4>Posted by <?php the_author(', ') ?> in <?php the_category(', ') ?></h4>
-
-
- </div>
- </div>
- <div class="entry">
- <?php comments_template(); ?>
- </div>
- <?php endwhile; else: ?>
- <div class="entry">
- <p>Sorry, no posts matched your criteria.</p>
- </div>
- <?php endif; ?>
- </div>
- <?php get_sidebar(); ?>
- <?php get_footer(); ?>
复制代码 这是index.php的代码。能帮看下是不是哪行写错了不? |
|