我想在geany编辑器中创建php文件“demo.php”,然后我想在我的网站中添加该页面。为了完成这项任务,我添加了“demo.php “在”wordpress / wp-content / themes / my_wesite_theme“文件夹中,之后我的wordpress将该文件显示为模板 ”demo“ ,到目前为止还可以。
之后我想在wordpress中添加新页 “new-page-of-site” ,其中包含 “demo”的模板 这是我的php文件模板,选择该模板后,当我在浏览器中查看 “new-page-of-site” 时,它只显示该输出没有wordpress主题的页面,那么如何在该页面中包含wordpress主题。
答案 0 :(得分:1)
这是一个简单的过程,很容易做到。
首先,您需要正确命名模板。这只是意味着在模板名称前添加前缀page-
。像这样:
page-demo.php
接下来,您必须在模板页面的顶部添加一些代码,以便WordPress知道模板的调用内容。
打开您创建的新page-demo.php
,并将此代码添加到顶部:
<?php
/*
Template Name: Demo
*/
// names the template
get_header(); // gets the header detail
?>
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
//
// Post Content here
//
} // end while
} // end if
?>
<?php
get_footer(); // gets the footer detail
?>
我已为实际页面添加了一些代码,但您想要更改它以适合您的实际页面布局。
当您进入WordPress管理区域添加新页面时,在保存按钮下方的右侧,您应该有一个用于更改模板的区域,只需选择新选项,保存然后您应该能够使用新模板查看页面。