0
我有一個稱爲產品的自定義發佈類型,每個產品都有一個自定義類別的商業,住宅或零售。在訪問以下網址時:http://176.67.171.11/airvent/product/aquaguard/
您可以在左側看到類別列表。點擊,您將獲得所有常規博客帖子的存檔頁面,而不是該類別的自定義帖子類型帖子。 我已經添加了archive-product.php,但它似乎並沒有將其拉入?自定義分類不顯示
我錯過了什麼?
在此先感謝。
我的代碼:(從pastebin)
register_taxonomy('product_range_cat',
array('product'),
array('hierarchical' => true,
'labels' => array(
'name' => __('Product Categories', 'bonestheme'),
'singular_name' => __('Product Category', 'bonestheme'),
'search_items' => __('Search Product Categories', 'bonestheme'),
'all_items' => __('All Product Categories', 'bonestheme'),
'parent_item' => __('Parent Product Category', 'bonestheme'),
'parent_item_colon' => __('Parent Product Category:', 'bonestheme'),
'edit_item' => __('Edit Product Category', 'bonestheme'),
'update_item' => __('Update Product Category', 'bonestheme'),
'add_new_item' => __('Add New Product Category', 'bonestheme'),
'new_item_name' => __('New Product Category Name', 'bonestheme')
),
'show_ui' => true,
'query_var' => true,
'rewrite' => array('slug' => 'product-category'),
)
);
請發佈與您的自定義分類法相關的代碼。 – 2013-03-24 15:27:49
這裏是一個代碼的pastebin:http://pastebin.com/cjRRbM11 – 2013-03-24 18:17:22
你是否嘗試將永久鏈接切換回默認值,然後返回到您當前的設置又名永久鏈接? – 2013-03-24 19:21:31