这真的很简单。查看Codex on Page Templates 了解更多信息。
复制现有页面。php文件位于WordPress主题文件夹中重命名页面。php文件到页面mypage。php
位于新的页面mypage的最上方。php文件,就在打开之后<?php
标记添加以下代码以定义自定义页面模板/* Template Name: My Page Template */
<现在进入您的页面mypage。php文件找到WordPress循环。通常是这样的:
<?php
// Start the loop.
while ( have_posts() ) : the_post();
// Include the page content template.
get_template_part( \'template-parts/content\', \'page\' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
// End of the loop.
endwhile;
?>
用项目的相关PHP代码替换整个循环
现在在WordPress中,您必须添加一个名为mypage的新页面,并在“页面属性”侧栏中选择您的自定义模板(My page template)。将有一个名为“模板”的下拉菜单完成