非常基本的模板
我创建了一个名为about.php
在我的主题根目录下的pages文件夹中使用此代码。
你可以做同样的事情,也可以根据自己的喜好更改位置,只是不要将其放在子文件夹中的子文件夹中,wordpress无法读取两级it文件夹结构中的模板。
<?php defined(\'ABSPATH\') || exit;
// Template name: About
// this gets the header.php file
get_header();
?>
<!-- Here we can do what ever we need -->
<style>
.content .headline,
.content .description {
text-align: center;
}
.content .headline {
margin: 0 0 20px;
font-size: 2rem;
}
.content .description {
max-width: 400px;
margin: 0 auto;
}
</style>
<div class="content">
<h1 class="headline">About Us</h1>
<p class="description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur repellat eius a beatae consectetur, et perferendis impedit molestias itaque esse optio repellendus sapiente iure debitis suscipit temporibus voluptas architecto animi.</p>
</div>
<?php
// this gets the footer.php file
get_footer();
?>