好吧,我想出来了。以下是我采取的步骤
在主题目录中创建一个php文件
wordpress Dir -> Themes -> YOUR THEME NAME -> newfile.php
在此文件中添加以下内容:
<?php /* Template Name: theme-child */ ?>
<?php get_header(); ?>
// your custom script here
<?php get_footer(); ?>
**Then go to Pages -> New Page
在侧边栏的新页面中,选择template并查找自定义文件顶部定义的模板名称。
命名并发布页面。Viola您应该有一个包含自定义代码的实时页面。