从wordpress模板

时间:2017-06-27 15:10:33

标签: php wordpress templates

我的自定义wordpress模板存在问题。 这就是我所做的。我在wordpress中创建了一个自定义模板。我在自定义php页面的位置添加了一个set_include_path。然后我用require' testpher.php'打开页面。这是按预期工作,但问题是。在customtemplate文件的末尾,应该调用wordpress函数get_footer()。在我目前的情况下,这不会发生。执行了我的testpher.php之后,页面就完成了。 以下是模板的代码:

<?php
/*
Template Name: Test Pascal
*/

/**
 * 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 may use a
 * different template.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package WordPress
 * @subpackage Twenty_Seventeen
 * @since 1.0
 * @version 1.0
 */
include '../../testpher.php';

get_header(); ?>

<div class="wrap">
    <div id="primary" class="content-area">
        <main id="main" class="site-main" role="main">

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

                get_template_part( 'template-parts/page/content', 'page' );

                // If comments are open or we have at least one comment, load up the comment template.
                if ( comments_open() || get_comments_number() ) :
                    comments_template();
                endif;

            endwhile; // End of the loop.
            set_include_path('/var/www/wordpress/wp-content');
            require 'testpher.php';

            ?>

        </main><!-- #main -->
    </div><!-- #primary -->
</div><!-- .wrap -->

<?php get_footer(); ?>

在加载自定义页面后,如何让wordpress运行get_footer()函数?

提前致谢。

0 个答案:

没有答案