我需要在我的一个模板文件中添加标题FileWalker(java.nio.file.Paths.get(" your dir ")).map({
case PreVisitDirectory(dir, atts) => s"about to visit dir ${dir}"
case PostVisitDirectory(dir, exc) => s"have visited dir ${dir}"
case VisitFile(file, attrs) => s"visiting file ${file}"
case VisitFileFailed(file, exc) => s"failed to visit ${file}"
})
。我将如何做到这一点我希望它只适用于这个特定的模板,以便它不在网站范围内,
答案 0 :(得分:0)
我认为您正在寻找is_page_template();
<?php
if(is_page_template('your-page-template.php')) { //Change this to the path to your wordpress template
//Add your code here...
} ?>
答案 1 :(得分:0)
您可以创建自定义模板页面并在此模板上调用自定义标头。 创建页面并应用页面模板
使用此代码创建页面模板
答案 2 :(得分:-1)
首先,你需要一个页面。有几种方法可以做到这一点,一种是在wordpress中创建一个页面,然后使用该ID并在主题文件夹中创建一个文件页面ID.php。另一种方法是创建一个模板文件,您可以从wordpress编辑器的侧边菜单中选择。
在该页面中,您可以添加php标题和要显示的代码。