我使用以下代码为Woocommerce创建了自定义分类法:
// Register Custom Taxonomy
function ess_custom_taxonomy_Item() {
$labels = array(
'name' => 'collections',
'singular_name' => 'Collection',
'menu_name' => 'Collections',
'all_items' => 'All Collections',
'parent_item' => 'Parent Collection',
'parent_item_colon' => 'Parent Collection:',
'new_item_name' => 'New Collection Name',
'add_new_item' => 'Add New Collection',
'edit_item' => 'Edit Collection',
'update_item' => 'Update Collection',
'separate_items_with_commas' => 'Separate Collection with commas',
'search_items' => 'Search Collections',
'add_or_remove_items' => 'Add or remove Collections',
'choose_from_most_used' => 'Choose from the most used Collections',
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => true,
'get_query_var' => true,
);
register_taxonomy( 'product-collections', 'product', $args );
}
add_action( 'init', 'ess_custom_taxonomy_item', 0 );
一切正常,我能够为自定义分类法添加术语,并且能够为每个术语添加产品,但是,当我转到术语页面时,会得到一个404页面。
我正在寻找一种方式,当我进入学期页面时,会看到与我在Woocommerce商店页面上看到的产品相同的产品列表。