我创建了一个二十二岁的儿童主题,并在那里添加了一些东西。现在在本地它看起来很好,页脚正常显示。
虽然当我将我的主题添加到我的服务器并选择它作为主题时,页脚没有显示。当我查看源代码时,页脚没有被加载。
现在我有这样的page.php;
<?php
/**
* The template for displaying all pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*/
get_header(); ?>
<div id="primary" class="site-content">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
这基本上是二十二页的文件。我编辑了我的内容文件,现在就是这个;
<?php
/**
* The default template for displaying content
*
* Used for both single and index/archive/search.
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
<div class="featured-post">
<?php _e( 'Featured post', 'twentytwelve' ); ?>
</div>
<?php endif; ?>
<header class="entry-header">
<?php the_post_thumbnail(); ?>
<?php if ( is_single() ) : ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="date"><a href="<?php the_permalink() ?>"><?php echo get_the_date('d') ?> <?php echo get_the_date('M') ?> '<?php echo get_the_date('y') ?></a></div>
<?php else : ?>
<h1 class="entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
<div class="date"><a href="<?php the_permalink() ?>"><?php echo get_the_date('d') ?> <?php echo get_the_date('M') ?> '<?php echo get_the_date('y') ?></a></div>
</h1>
<?php endif; // is_single() ?>
</header><!-- .entry-header -->
<?php if ( is_search() ) : // Only display Excerpts for Search ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( '<span class="readmore">Lees verder <span class="meta-nav">→</span></span>', 'twentytwelve' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
<footer class="post-footer">
<ul class="post-info-meta">
<li class="post-info-comment"><div class="post-comment"><?php comments_popup_link( __('0 Reacties','twentytwelve'), __('1 Reactie','twentytwelve'), __('% Reacties','twentytwelve') ); ?></div></li>
</ul>
</footer><!-- .post-footer --> </article><!-- #post -->
但据我所知,页脚是在page.php而不是内容文件中调用的,对吗?现在为什么没有出现?主题在http://allesovereline.nl上,我没有看到任何由我编辑过的文件引起的错误。
这些是错误;
[Error] SyntaxError: Unexpected token '<' (www.allesovereline.nl, line 384)
[Error] TypeError: 'undefined' is not a function (evaluating 'this.ajaxForm')
wpcf7InitForm (scripts.js, line 14)
(anonymous function) (scripts.js, line 10)
c (jquery.js, line 3)
fireWith (jquery.js, line 3)
ready (jquery.js, line 3)
q (jquery.js, line 3)
[Error] SyntaxError: Unexpected token '<' (www.allesovereline.nl, line 384)
[Error] TypeError: 'undefined' is not a function (evaluating 'this.ajaxForm')
wpcf7InitForm (scripts.js, line 14)
(anonymous function) (scripts.js, line 10)
c (jquery.js, line 3)
fireWith (jquery.js, line 3)
ready (jquery.js, line 3)
q (jquery.js, line 3)
有没有人知道为什么会这样?
到目前为止我尝试了什么: 禁用所有插件。 选择Twenty Twelve(工作正常,页脚显示在那里。) 启用错误日志但它没有生成错误文件。