2016-09-01 67 views
0
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頁。我在代碼中犯了任何錯誤,或者我必須將頁面重定向到其他頁面,或者我必須創建其他頁面,我的分類標準塊需要幫助未找到頁面上的自定義文本分類重定向

+0

嘗試與'slug'的一些不同名稱只是爲了測試重命名''slug'=>'categorys''爲''slug'=>'my- text''。並嘗試訪問url http://url.com/my-text,看看它是否工作。 –

+0

我也嘗試過這一點,但都是徒勞的..沒有任何工作 – RamanSall

+0

您已初始化'products_post_product',但您的方法名稱爲'add_custom_taxonomies'。所以重命名它們中的任何一個。我認爲這可能是問題所在。 –

回答

1

以上是我的代碼:但是我的分類術語頁面正在重定向到頁面未找到頁面。我的網址hhtp://url.com/categorys- 404頁面。我在代碼中犯了任何錯誤,或者我必須將頁面重定向到其他頁面,或者我必須創建其他頁面,我的分類標準塊需要幫助

Ans:需要爲您的分類標準創建文件例如taxonomy-categorys.php 作爲您的分類名稱與之前的分類詞

+0

我已經創建了該文件,但該文件在hhtp://url.com/categorys/post1上運行。它沒有運行分類術語 - hhtp://url.com/categorys – RamanSall

+0

add_action('init','products_post_product') ; 功能add_custom_taxonomies(){ ... } 請更改行動函數名,如下 ADD_ACTION( '初始化', 'add_custom_taxonomies'); function add_custom_taxonomies(){ ... } –

相關問題