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/"
),
)
);
}
以上是我的代碼:但是我的分類術語頁面正在重定向到頁面未找到頁面。我的網址hhtp://url.com/categorys- 404頁。我在代碼中犯了任何錯誤,或者我必須將頁面重定向到其他頁面,或者我必須創建其他頁面,我的分類標準塊需要幫助未找到頁面上的自定義文本分類重定向
嘗試與'slug'的一些不同名稱只是爲了測試重命名''slug'=>'categorys''爲''slug'=>'my- text''。並嘗試訪問url http://url.com/my-text,看看它是否工作。 –
我也嘗試過這一點,但都是徒勞的..沒有任何工作 – RamanSall
您已初始化'products_post_product',但您的方法名稱爲'add_custom_taxonomies'。所以重命名它們中的任何一個。我認爲這可能是問題所在。 –