Wordpress自定义帖子类型 - 帖子属性:模板。模板显示并保存在后端,但正在呈现默认主题文件

时间:2017-08-08 15:00:40

标签: wordpress wordpress-theming custom-wordpress-pages

编辑:现在我发现这是混合核心,显然模板层次结构不同。我仍然无法解决下面的问题。

除了标题。我的想法是,如果我能够在后端选择一个模板,它应该尊重这个选择。但它并没有改变。我已经测试了其他模板文件来代替默认模板,但它确实有效。

这是添加自定义帖子类型的功能。这很好用。

add_action( 'init', 'register_cpt_location' );

function register_cpt_location() {

$labels = array(
    'name' => _x( 'Locations', 'info_locaiton' ),
    'singular_name' => _x( 'Location', 'info_location' )
);

$args = array(
    'labels' => $labels,
    'description' => 'Custom Post Type for Location',
    'hierarchical' => true,
    'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'revisions', 'page-attributes' ),
    'public' => true,
    'show_ui' => true,
    'show_in_menu' => true,
    'menu_position' => 6,
    'show_in_nav_menus' => true,
    'publicly_queryable' => true,
    'exclude_from_search' => true,
    'has_archive' => true,
    'query_var' => true,
    'can_export' => true,
    'rewrite' => array( 
        'slug' => 'location', 
        'with_front' => false,
        'feeds' => true,
        'pages' => true
    ),
    'menu_icon' => 'dashicons-location',
    'capability_type' => 'post'
);

register_post_type( 'info_location', $args );   
}

当我为自定义帖子类型添加模板时(仅在几个帖子上使用),元数据会显示我的新模板。但是,实时页面仍然使用自定义帖子类型的默认模板。

默认模板是" info_location.php"。

这是模板文件的头信息" info_location-fm.php"。

/*
* Template Name: Location-fm
* Template Post Type: info_location
*/

显示模板的下拉列表(下方)

showing the drop down for templates

选择并保存了新模板,但仍然无效(下方)

new template selected and saved, still doesn't work

1 个答案:

答案 0 :(得分:1)

嗨。我相信你的模板文件应该命名为' single-info_location.php'并且可以放在Main主题的根目录上,也可以创建一个子主题并将其放在那里。并在您的标签上进行小错字修正:

$labels = array(
    'name' => _x( 'Locations', 'info_location' ),
    'singular_name' => _x( 'Location', 'info_location' )
);