页面上未显示的内容

时间:2015-12-01 作者:Dennis

<?php

/* Template Name : Home
*/
?>
get_header(); ?>

 <?php get_footer(); ?>
当我在页面的内容编辑器上键入任何内容时,它不会显示任何内容。

我如何使它工作?

2 个回复
最合适的回答,由SO网友:Erez Lieberman 整理而成

您需要在前后添加循环,并添加函数the\\u content()

类似这样:

<?php
/**
** Template Name : Home
**/
get_header(); ?>

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

    <?php the_content(); ?>

<?php endwhile; // end of the loop. ?>


<?php get_footer(); ?>

SO网友:Kvvaradha

通过添加循环,您可以查询您在后端输入的所有帖子。就这样做吧

    <?php 
    /**
     *    Template Name: Home 
     **/
     get_header();  

     //Here i added a loop to explain you.
      if ( have_posts() ) {
           while ( have_posts() ) {

           the_title();    // Post title

            the_content();  // Post Content here

         } // end while
     } // end if

 get_footer();   ?>
从上面的代码中,我添加了一个循环和循环内的两个函数。这将为您提供帖子及其内容,the_content 函数将获取编辑器内容。

相关推荐

Read_Private_Pages功能不适用于新角色

我已经创建了一个新的用户角色-供应商-能够read_private_pages, 但当我以这样的用户身份登录并转到一个私人页面时,我看不到它。以下是我的插件代码:function fc_add_role($role, $display_name, $capabilities = array()) { if (!empty($role)) { return wp_roles()->add_role( $role, $display_name, $capabili