从网上下了一个网站的模板,在本机运行了下,出现这个错误:
SCREAM: Error suppression ignored for 
( ! ) Fatal error: Call to undefined function get_header() in C:\wamp\www\zenith\index.php on line 17 
Call Stack 
# Time Memory Function Location 
1 0.0004 386824 {main}( ) ..\index.php:0 
index。php的第17行是:
get_header(); // Loads the header.php template. ?>这是为什么?

解决方案 »

  1.   

    还是报错:
    ( ! ) Parse error: syntax error, unexpected '<' in C:\wamp\www\zenith\index.php on line 17 但是前面的代码没问题啊:
    <?php
    /**
     * Index Template
     *
     * This is the default template.  It is used when a more specific template can't be found to display
     * posts. It is unlikely that this template will ever be used, but there may be rare cases.
     *
     * @package Zenith
     * @subpackage Template
     * @since 0.1.0
     * @author Tung Do <[email protected]>
     * @copyright Copyright (c) 2013, Tung Do
     * @link http://devpress.com/themes/zenith/
     * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     */<?php get_headers(); // Loads the header.php template. ?>
      

  2.   

    <?php
    /**
     * Index Template
     *
     * This is the default template.  It is used when a more specific template can't be found to display
     * posts. It is unlikely that this template will ever be used, but there may be rare cases.
     *
     * @package Zenith
     * @subpackage Template
     * @since 0.1.0
     * @author Tung Do <[email protected]>
     * @copyright Copyright (c) 2013, Tung Do
     * @link http://devpress.com/themes/zenith/
     * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     */get_headers(); // Loads the header.php template. ?><?php do_atomic( 'before_content' ); // zenith_before_content ?><div id="content"> <div class="hfeed">

    <?php if ( have_posts() ) : ?><?php while ( have_posts() ) : the_post(); ?>

    <?php do_atomic( 'before_entry' ); // zenith_before_entry ?> <article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>"> <?php do_atomic( 'open_entry' ); // zenith_open_entry ?>

    <header class="entry-header">
    <?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( '[entry-edit-link] [entry-published] [entry-author] [entry-comments-link]', 'zenith' ) . '</div>' ); ?>
    <?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
    </header><!-- .entry-header --> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'zenith' ) ); ?>
    <?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'zenith' ), 'after' => '</p>' ) ); ?> </div><!-- .entry-content -->

    <footer class="entry-footer">

    <?php echo apply_atomic_shortcode( 'entry_terms', '<div class="entry-terms">' . __( '[entry-terms taxonomy="category" separator=""] [entry-terms taxonomy="post_tag" separator=""]', 'zenith' ) . '</div>' ); ?>

    </footer> <?php do_atomic( 'close_entry' ); // zenith_close_entry ?> </article><!-- .hentry -->

    <?php do_atomic( 'after_entry' ); // zenith_after_entry ?>

    <?php endwhile; else : ?>

    <?php get_template_part( 'loop', 'error' ); // Loads the loop-error.php template ?>

    <?php endif; ?>

    </div><!-- .hfeed -->

    <?php do_atomic( 'close_content' ); // zenith_close_content ?>

    <?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>

    </div><!-- #content --><?php do_atomic( 'after_content' ); // zenith_after_content ?><?php get_footer(); // Loads the footer.php template. ?>
      

  3.   

    get_headers(); // Loads the header.php template. ?> 
    这种把注释删掉,否则后面的?>的也被注释掉了,或者就把?>放在下面一行。
      

  4.   

    SCREAM: Error suppression ignored for 
    ( ! ) Fatal error: Call to undefined function do_atomic() in C:\wamp\www\zenith\index.php on line 11 
    现在还是这个报错,