我假设您正在尝试创建一个链接到WordPress页面的新模板文件。
附加文档:https://codex.wordpress.org/Theme_Development#Basic_Templates
为此,您需要执行以下操作:
<?php
/*
Template Name: My first template file
*/
get_header();
?>
<!-- Main body -->
<?php
if (1<2) {
echo "Add multiple lines of text here and watch the scrollbars grow."
}
?>
<!-- End Main body -->
<?php
get_sidebar();
get_footer();
?>
在WordPress仪表板中,您只需在页面属性部分选择模板文件。
<小时>EDIT : 有关创建新模板文件的详细信息。
您可以将新文件另存为my_first_template_file.php
您需要将其上载到您的主题文件夹中。
通常,在FTP中public_html/wp-content/themes/my_theme_name/
.
您将在何时放置文件。只需在WordPress仪表板中刷新页面即可。您应该看到模板部分。