2013-03-24 65 views
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'), 
    ) 
); 
+0

請發佈與您的自定義分類法相關的代碼。 – 2013-03-24 15:27:49

+0

這裏是一個代碼的pastebin:http://pastebin.com/cjRRbM11 – 2013-03-24 18:17:22

+0

你是否嘗試將永久鏈接切換回默認值,然後返回到您當前的設置又名永久鏈接? – 2013-03-24 19:21:31

回答

0

問題解決了,這是一個片段,我發現排除loop.php產品類別類型:

<?php query_posts($query_string . '&cat=-4'); //Custom query to exclude category/ies ?>

我仍然不明白爲什麼它不會調用archive-product.php?

感謝您的幫助。

相關問題