WordPress内置了此功能。只要您有一个用PHP创建的页面模板,它就会为您提供在创建新页面时使用该模板的选项。
您可以通过将此短片段添加到PHP文件的顶部来创建页面模板。
<?php /* Template Name: Example Template */ ?>
例如,您可以复制页面。php并添加上述代码,然后进行任何特定于模板的更改,您将拥有一个新的页面模板。
像这样的。。。
<?php /* Template Name: Example Template */ ?>
<?php get_header(); ?>
<main>
<div class="container clearfix">
<?php
while (have_posts()) :
the_post();
get_template_part(\'template-parts/content\', \'page\');
endwhile; // End of the loop.
?>
</div> <!-- /container -->
</main>
<?php get_footer(); ?>
以下是WP 5.2.2 admin中的内容。
你应该大胆地阅读PAGE TEMPLATES.