我正在修改wordpress主题以获得移动菜单。但是,我对WP或PHP没有太多经验,所以我需要你告诉我WP用来访问顶栏上的页面的功能/代码。另外,我应该修改哪个文档? (主题是Vantage)
答案 0 :(得分:0)
您可以修改位于
中的header.phpwp-content/themes/vantage/header.php
这是我为我的项目写的gist.github.com上的函数
function get_current_template_name($return = FALSE) {
$files = get_included_files();
$templateIndex = (count($files)-2);
$string = $files[$templateIndex];
$templateName = end(explode(DIRECTORY_SEPARATOR, $string));
if($return) return $templateName;
else echo $templateName;
}
// Calling | this will print the current template name
get_current_template_name();
// Calling with Bool Param
$tmpl_file = get_current_template_name(TRUE);
if($tmpl_file == 'page.php') echo "this page is using default page template";