如何在 public_html/test1
等目录中创建一个页面,其中包含 header/sidebar/footer
的空白页实际模板。
我只能看到标题,没有侧边栏,没有内容(我的意思是内容"你好。")。
我使用了二十四个模板。
这是我正在使用的PHP代码:
<?php
/*
* Template Name: My own page!
* Description: I made a page!
*/
require (dirname(dirname( __FILE__ )).'/wp-load.php');
get_header();
get_sidebar();
?>
Hello.
注意:如果我删除 the_content();
get_footer();
,则只显示标题,但不显示格式。
任何帮助深表赞赏
答案 0 :(得分:1)
内容未显示,因为模板中没有循环。请在模板中添加此代码,并将模板文件移至二十四主题内的“page-templates”文件夹。
<?php
/*
* Template Name: My own page!
* Description: I made a page!
*/
get_header(); ?>
<div id="main-content" class="main-content">
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php
// Start the Loop.
while ( have_posts() ) : the_post();
// Include the page content template.
get_template_part( 'content', 'page' );
endwhile;
?>
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- #main-content -->
<?php
get_sidebar();
get_footer();
P.S。如果你愿意,你可以删除div。