Wordpress:在page.php中看不到内容,只有侧边栏

时间:2017-06-29 15:20:44

标签: php wordpress

我创建了自己的主题并将其他标准Wordpress主题中的代码复制并粘贴到我的page.php中,但它不会显示内容,只有侧边栏才会显示代码。< / p>

我从Twentyseventeen复制的page.php代码示例:

<?php
/**
 * 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
 */

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.
            ?>

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

<?php get_footer();

我已经创建了许多不同的自定义页面模板,它们都显示内容很好。

我创建了一个非常标准的新页面,其中包含默认模板(page.php)并在管理面板中添加了文本(因此不直接添加到模板中),但此文本或任何短代码或其他输入都可以查看完成的页面时不会显示。

无法弄清楚缺少的是什么。非常感谢任何帮助,谢谢。

1 个答案:

答案 0 :(得分:0)

我假设你没有模板部分/页面中的文件content-page.php?如果没有,请复制并粘贴Twentyseventeen主题中的整个模板部件文件夹,或者替换该行&#39; get_template_part(&#39; template-parts / page / content&#39;,&#39; page&#39;);&#39;使用&#39; the_content();&#39;