我创建了一个儿童主题:Fisio
里面我有:页面团队。php名称:
<?php
/*
Template Name: Page - Team
*/
?>
<?php get_header(); ?>
<script>alert(\'its the team page\')</script>
在wp admin中,我为页面选择了它:团队
问题是我对页面团队所做的任何更改。php不受影响。事实上,警报从未执行过。
我错过了什么?
PD:有没有办法知道在查看源代码时使用了哪个模板?我找不到这个
-编辑-
忘记提到团队正在列出一个自定义的post\\u类型:team,下面是函数中的声明。php
<?php
/**
* Custom Post type register framework
*/
include(get_stylesheet_directory(). \'/inc/acpt/init.php\');
add_action(\'init\', \'makethem\');
function makethem() {
$args = array(
\'supports\' => array( \'title\', \'editor\', \'page-attributes\', \'thumbnail\', \'excerpt\' ),
\'hierarchical\' => true,
);
$team = new post_type(\'team\',\'team\', false, $args );
}
/**
* Initialize the metabox class
*/
add_action( \'init\', \'be_initialize_team_meta_boxes\', 9999 );
function be_initialize_team_meta_boxes() {
if ( !class_exists( \'team_Meta_Box\' ) ) {
require_once( get_stylesheet_directory(). \'/inc/metaboxes/fisio-metaboxes.php\' );
require_once( get_stylesheet_directory(). \'/inc/metaboxes/init.php\' );
}
}
?>