add_action( 'init', 'products_post_product' );
function add_custom_taxonomies() {
// Add new "Locations" taxonomy to Posts
register_taxonomy('Categorys', 'products', array(
// Hierarchical taxonomy (like categories)
'hierarchical' => true,
'show_ui' => true,
'show_admin_column' => true,
'query_var' => false,
// 'hide_meta_box' => true,
// This array of options controls the labels displayed in the WordPress Admin UI
'labels' => array(
'name' => _x( 'categorys', 'taxonomy general name' ),
'singular_name' => _x( 'Categorys', 'taxonomy singular name' ),
'search_items' => __( 'Search Categorys' ),
'all_items' => __( 'All Categorys' ),
'parent_item' => __( 'Parent Categorys' ),
'parent_item_colon' => __( 'Parent Categorys:' ),
'edit_item' => __( 'Edit Categorys' ),
'update_item' => __( 'Update Categorys' ),
'add_new_item' => __( 'Add New Categorys' ),
'new_item_name' => __( 'New Categorys Name' ),
'menu_name' => __( 'Categorys' ),
),
// Control the slugs used for this taxonomy
'rewrite' => array(
'slug' => 'categorys', // This controls the base slug that will display before each term
// 'with_front' => true, // Don't display the category base before "/locations/"
// 'hierarchical' => false // This will allow URL's like "/locations/boston/cambridge/"
),
)
);
}
上面是我的代码:但我的分类术语页面正在重定向到找不到页面的页面。我的网址://url.com/categorys- 404页面。我在代码中犯了任何错误,或者我必须将页面重定向到其他页面,或者我必须创建其他页面我的分类标题。需要帮助
答案 0 :(得分:1)
上面是我的代码:但我的分类术语页面正在重定向到找不到页面的页面。我的网址://url.com/categorys- 404页面。我在代码中犯了任何错误,或者我必须将页面重定向到其他页面,或者我必须创建其他页面我的分类标题。需要帮助
Ans:需要为您的分类法创建文件,例如分类学categorys.php 作为您的分类学名称与分类词之前的