以下是使用分类法创建自定义帖子的代码。
add_action('init', 'product_post_type');
function product_post_type() {
register_taxonomy('products', 'products', array(
'hierarchical' => true,
'label' => 'Product category',
'query_var' => true,
'rewrite' => array(
'hierarchical' => true
)
));
register_post_type('product', array(
'labels' => array(
'name' => __('Products'),
'singular_name' => 'product' ,
'add_new_item' => 'Add new Product',
'edit_item' => 'Edit Product'
),
'taxonomies' => array('products'),
'supports' => array('title','editor','thumbnail'),
'public' => true,
'has_archive' => false,
'capability_type' =>'post'
));
add_post_type_support('product', array('comments'));
}
下面是显示分类https://localhst.com/wordpress/product/project/中帖子的网址,但我想在网址中显示帖子所属的自定义分类,例如项目自定义帖子已分配目标类别,所以我想要网址为项目帖子为https://localhst.com/wordpress/products/target/project/,但目前为https://localhst.com/wordpress/product/project/
请帮帮我。
谢谢