从具有自定义正文的模板创建页面

时间:2016-12-06 06:03:23

标签: wordpress

创建名为page-person.php

的页面模板
<?php
/**
 * Template Name: Person Page
 * 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 mentorme
 */

get_header(); ?>  
        <div class="personality">
          <!-- dynamic content -->
          <?php the_content(); ?>
        </div>
    <?php get_footer(); ?>

现在我添加了一些测试内容,同时从模板&#39;人物页面创建页面。像这样 enter image description here

但在页面/ dr-xyz上没有显示文字&#39;测试&#39;任何地方!

2 个答案:

答案 0 :(得分:1)

您可以使用the_content显示您的内容,并the_title()显示您的帖子标题。请尝试以下代码

<?php get_header(); ?>
<div class="personality">
    <?php if (have_posts()) : 
        while (have_posts()) : the_post(); ?>
           <?php the_title(); ?>
           <?php the_content(); ?>
        <?php endwhile; ?>
    <?php endif; ?>
</div>
<?php get_footer(); ?>

答案 1 :(得分:0)

试试这个

if ( have_posts() ) {
  while ( have_posts() ) {
    the_post(); 
    the_content();
  } // end while
} // end if