我正嘗試在自定義帖子類型中使用自定義頁面模板。但是,嘗試添加新頁面時,模板選項不會顯示在帖子類型中。請參閱下面的代碼:Wordpress自定義模板在自定義帖子類型中不顯示
的functions.php自定義職位類型:
add_action('init', 'register_cpt_product');
function register_cpt_product() {
$labels = array(
'name' => _x('Products', 'product'),
'singular_name' => _x('Product', 'product'),
'add_new' => _x('Add New', 'product'),
'add_new_item' => _x('Add New Product', 'product'),
'edit_item' => _x('Edit Product', 'product'),
'new_item' => _x('New Product', 'product'),
'view_item' => _x('View Product', 'product'),
'search_items' => _x('Search Products', 'product'),
'not_found' => _x('No products found', 'product'),
'not_found_in_trash' => _x('No products found in Trash', 'product'),
'parent_item_colon' => _x('Parent Product:', 'product'),
'menu_name' => _x('Products', 'product'),
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'description' => 'Product pages',
'supports' => array('title', 'editor', 'excerpt', 'thumbnail', 'custom-fields', 'revisions', 'page-attributes'),
'taxonomies' => array('category'),
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'show_in_nav_menus' => true,
'publicly_queryable' => true,
'exclude_from_search' => false,
'has_archive' => false,
'query_var' => true,
'can_export' => true,
'rewrite' => true,
'capability_type' => 'page'
);
register_post_type('product', $args);
}
頁面模板(除模板標記的)
<?php
/*
Template Name: Product
*/
?>
你想達到什麼目的?什麼是您的模板的文件名? –
模板是single-product.php。我只是試圖在自定義頁面類型中使用此模板。 –