如何将wordpress网站的页眉和页脚包含在自定义的php文件中?

时间:2018-02-25 18:50:38

标签: php wordpress wordpress-theming

我有一个自定义的php文件,我想将header.php和footer.php文件包含在其中,该文件位于header.php和footer.php旁边的主题文件中,但是当我尝试< / p>

<?php get_header(); ?>

我收到一个错误,未定义的函数get_header。

是否有办法包含它,或者我必须使用include / require手动包含它们?

1 个答案:

答案 0 :(得分:0)

您是否在项目中创建了这些文件?您应该在项目中创建footer.phpheader.php

您的页面应如下所示:

<!-- The header of the page -->
<?php get_header(); ?>
<!-- The main wrapper of the page -->
<main class="main-container container_960">
    <!-- Main content Section -->
    <section class="main-content">
        <!-- Printing the content -->
        <?php if (have_posts()) : while (have_posts()) :the_post() ?>

            <?php
                    the_title("<h1>","</h1>");

                    the_content();
            ?>

        <?php endwhile; else : ?>
            <!-- Showing that there is no content -->
            <p><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></p>
        <?php endif; ?>

    </section>
    <!-- Pinting the Sidebar -->
    <?php get_sidebar(); ?>

</main>
<!-- Printing the footer -->
<?php get_footer() ?>

为标题创建一个文件,将其命名为header.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title><?php  the_title();?></title>
    <!-- This is for adding the meta information, where styles registered in functions php --> 
    <?php wp_head(); ?>
</head>
<body>

<header class="the_header">
<!-- You can create your content here
</header>
...

您应该再次为页脚创建另一个文件footer.php

<footer class="main-footer">
        The footer
    </footer>

    <!-- We call here the scripts enqeued in functions.php-->
    <?php wp_footer();?>
</body>
</html>