这是我的索引。php文件,出于某种原因页脚。php未通过加载
真的很奇怪,它在我的主题目录中,这可能是什么原因?
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="content">
<?php query_posts(\'cat=-15\'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="entry">
<p><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></p>
<?php
if ( has_post_thumbnail() ) { ?>
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail(); ?></a>
<?php } else {
} ?>
</div>
<?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 get_search_form(); ?>
<?php endif; ?>
</div><!--//content-->
<?php get_footer(); ?>