Footer.php not showing?

时间:2010-11-30 作者:tjcss

这是我的索引。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(); ?>

2 个回复
最合适的回答,由SO网友:anu 整理而成

来自法典(http://codex.wordpress.org/Function_Reference/get_footer)

如果主题不包含页脚。php文件,然后默认主题wp的页脚包括/theme compat/footer。php将包括在内。

很可能您的页脚有问题。php,并且没有任何可渲染的内容-即正在调用它,但它没有执行预期的操作。

你能粘贴你的页脚吗。php?

SO网友:tjcss

对,很抱歉,但我已经弄明白了。

我回显日期的php语法完全错误,所以我使用php文档修复了这个问题,现在已经全部排序好了。

它是:<?php echo "date"(Y); ?>

但应该是:<?php echo date("Y"); ?> 谢谢你的帮助,我一分钟都没想到这会是个问题,对不起。

结束

相关推荐