什么时候去http://craigmdennis.com/articles/ Wordpress使用索引。php模板。
当您转到http://craigmdennis.com/2010/05/ Wordpress使用相同的模板(下面的标记),但显示相同的帖子。
我尝试过:
禁用所有插件-无更改使用存档将永久链接更改回默认值。php文件这显然与我的循环有关。
<?php get_header(); ?>
<!-- index.php -->
<div id="content" class="content clearfix">
<div class="grid_8">
<?php if ( have_posts() ) : ?>
<?php query_posts(\'posts_per_page=10&paged=\'.$paged); ?>
<?php while (have_posts()) : the_post(); ?>
<article id="<?php the_ID(); ?>" class="post">
<h3 class="post-title">
<a href="<?php the_permalink(); ?>" rel=bookmark"><?php the_title(); ?></a>
</h3>
<?php the_excerpt(); ?>
</article>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
<nav class="pagination"><?php posts_nav_link(); ?></nav>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
有人能解释一下我做错了什么吗?