我有 4 种自定义帖子类型:
服务 常见问题 之前和之后的价格
我希望能够在这些帖子类型中使用相同的帖子名称,例如:
服务
皮肤 (example.com/Services/skin)
霜 (example.com/Services/cream)
身体 (example.com/Services/body)皮肤
(example.com/FAQs/skin)
面霜 (example.com/FAQs/cream)
身体 (example.com/FAQs/body)价格
皮肤 (example.com/Prices/skin)
奶油 (example.com/Prices/cream)
身体 (example.com/Prices/body)
皮肤前后(example.com/before-and-after/skin)
面霜 (example.com/before-and-after/cream)
身体 (example.com/before-and-after/body)
我怎样才能做到这一点?现在,如果我创建一个与当前帖子同名的新帖子,它会在帖子 slug 的末尾添加一个“-2”或“-3”:
坏的:
example.com/services/body
example.com/faqs/body-2
example.com/prices/body-3
example.com/before-and-after/body-4
有人请帮忙!!!!
add_action('init', 'create_post_type_html5'); // Add our HTML5 Blank Custom Post Type
function create_post_type_html5()
{
register_taxonomy_for_object_type('category', 'html5-blank'); // Register Taxonomies for Category
register_taxonomy_for_object_type('post_tag', 'html5-blank');
register_post_type('html5-blank', // Register Custom Post Type
array(
'labels' => array(
'name' => __('Services', 'html5blank'), // Rename these to suit
'singular_name' => __('Services', 'html5blank'),
'add_new' => __('Add New', 'html5blank'),
'add_new_item' => __('Add New Services', 'html5blank'),
'edit' => __('Edit', 'html5blank'),
'edit_item' => __('Edit Services', 'html5blank'),
'new_item' => __('New Services', 'html5blank'),
'view' => __('View Services', 'html5blank'),
'view_item' => __('View Services', 'html5blank'),
'search_items' => __('Search Services', 'html5blank'),
'not_found' => __('No Servicess found', 'html5blank'),
'not_found_in_trash' => __('No Service\'s found in Trash', 'html5blank')
),
'rewrite' => array('slug' => 'service','with_front' => true),
'public' => true,
'hierarchical' => true, // Allows your posts to behave like Hierarchy Pages
'has_archive' => true,
'supports' => array(
'title',
'editor',
'excerpt',
'thumbnail'
), // Go to Dashboard Custom HTML5 Blank post for supports
'can_export' => true, // Allows export in Tools > Export
'taxonomies' => array(
'post_tag',
'category'
) // Add Category and Post Tags support
));
}