页脚不在Page.php中显示

时间:2015-04-29 作者:Deimantas Brandišauskas

所以我尝试将静态HTML/CSS/JS集成到WordPress中,一切都很顺利,但现在我意识到我的页脚并没有显示在我的单个静态页面(page.php)中。但我可以在首页(索引)和自定义联系人表单页中看到我的页脚。

这是我的页面。php文件:

<?php get_header(); ?>

    <!-- Page Content-->
    <div id="content" class="snap-content">

                <div class="header-clear"></div>
                    <div class="content">
                        <div class="container no-bottom">

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

                            <h2><?php the_title(); ?></h2>
                            <p><?php the_content(); ?></p>

                            <?php endwhile; else : ?>
                                <p><?php _e( \'Sorry, no posts matched your criteria.\' ); ?></p>
                            <?php endif; ?>

                        </div>
                    </div>
                </div>

<?php get_footer(); ?>
我还有索引。php和首页。php文件(都有<?php get_header(); ?><?php get_footer(); ?> 功能)。

是的,在我的页脚。我打电话给php<?php wp_footer(); ?> 就在关闭标记之前。

感谢您的帮助。

编辑:我尝试了许多不同的变体,并在页面中创建了一些虚拟的静态html内容。php,但无论我做什么和做什么更改,我都无法显示页脚。

EDIT 2: 为什么会这样?enter image description here

1 个回复
SO网友:Husien

尝试使用include("footer.php");

我看到你的

<div id="content" class="snap-content">
没有关闭标记</div>

结束

相关推荐

Get_Pages()仅返回一项

我试图使用get\\u pages()列出特定父页面的子页面,以便在短代码中使用。不幸的是,只显示了一个页面,尽管还有很多页面需要显示。// List Vocations function get_vocations_list() { $args = array ( \'parent\' => \'753\', \'sort_column\' => \'menu_order\', \'so