自定義帖子類型的分類查詢不顯示結果。定期查詢自定義類型顯示結果。我可以將自定義稅賦分配給自定義類型。當我運行查詢時,我什麼也得不到,只是一個錯誤。我得到這個錯誤:wordpress - WP查詢自定義類型/稅不顯示帖子
Notice: Undefined offset: 0 in /Applications/MAMP/htdocs/folsom/wp-includes/query.php on line 2526
這裏是我的查詢:
$args = array(
'post_type' => 'product',
'tax_query' => array(
array(
'taxonomy' => 'product-cat',
'term' => 'featured',
'field' => 'slug'
)
)
);
**更新:命中進入我做了。我在添加更多信息的過程中
**更新:我確保將分類法添加到參數類型的參數中,定義了優先級,以便他們首先註冊。
add_action('init', 'create_product_taxonomies', 0);
add_action('init', 'setup_custom_post');
function setup_custom_post(){
$args = array(
'label' => 'products',
// Bunch of other stuff
'taxonomies' => array('product-cat'),
),
);
register_post_type('product', $args);
}
你要添加其他內容? – 2014-09-01 02:40:59