错误:致命错误:在第1行的C:\ Xampp \ xampp \ htdocs \ index.php中调用未定义函数get_header()
索引代码:
<?php get_header(); ?>
<?php get_sidebar()?>
<div id="left">
<?php_while(have_posts()):?>
<h2><?php the_title()?></h2>
<?php the_content();?>
<?php_endwhile();?>
</div>
<?php get_footer()?>`
答案 0 :(得分:1)
函数get_geader()是一个wordpress主题函数,你从它调用它:
C:\ XAMPP \ XAMPP \ htdocs中\的index.php
将相同的代码放在wordpress主题中,它会起作用。