我创建了一个自定义帖子类型(产品),其中包含一些自定义分类。其中一个是“类别”。我想在自定义分类“类别”下自动生成产品下的菜单,以便在菜单上点击PRODUCTS -> <category>
,它会将它们带到该类别的特定产品列表中(我已经已经有一个显示单个产品的页面,以及一个列出所有产品的页面。请注意,某些category
分类法会有子项,我也想在菜单中显示。
我对wordpress有些新手,我知道如何创建菜单的唯一方法是通过wp-admin,但我不想进入并为每个类别和子类别创建页面/菜单。 / p>
我所说的甚至可能吗?谢谢!
自定义帖子类型在这里:
add_action( 'init', 'create_product_post_type' );
function create_product_post_type()
{
$labels = array(
'name' => _x('Products', 'post type general name'),
'singular_name' => _x('Product', 'post type singular name'),
'add_new' => _x('Add New', 'product'),
'add_new_item' => __('Add New Product'),
'edit_item' => __('Edit Product'),
'new_item' => __('New Product'),
'view_item' => __('View Product'),
'search_item' => __('Search Products'),
'not_found' => __('No products found'),
'not_found_in_trash' => __('No products found in Trash'),
'parent_item_colon' => '',
'menu_name' => 'Products'
);
$args = array(
'label' => __('Products'),
'labels' => $labels,
'public' => true,
'can_export' => true,
'show_ui' => true,
'_builtin' => false,
'capability_type' => 'post',
'menu_icon' => get_bloginfo('template_url').'/functions/images/product.png',
'hierarchical' => false,
'rewrite' => array( "slug" => "product" ),
'supports' => array('title'), //MAYBE add thumbnail later!
'show_in_nav_menus' => true
);
register_post_type( 'product', $args);
}
以下是分类:
function create_productcategory_taxonomy() {
$labels = array(
'name' => _x( 'Categories', 'taxonomy general name' ),
'singular_name' =>_x( 'Category', 'taxonomy singular name' ),
'search_items' => __( 'Search Categories' ),
'popular_items' => __( 'Popular Categories' ),
'all_items' => __( 'All Categories' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Edit Product Category' ),
'update_item' => __( 'Update Product Category' ),
'add_new_item' => __( 'Add New Product Category' ),
'new_item_name' => __( 'New Product Category' ),
'separate_items_with_commas' => __( 'Separate categories with commas' ),
'add_or_remove_items' => __( 'Add or remove product categories' ),
'choose_from_most_used' => __( 'Choose from the most used categories' )
);
register_taxonomy('productcategory', 'product', array (
'label' => __('Product Category'),
'labels' => $labels,
'hierarchical' => true,
'show_ui' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'product-category'),
));
}
答案 0 :(得分:4)
试试wp_list_categories。它从分类中导出类别,其中包含指向您选择的深度的链接。 (以便根据需要将许多子类别)格式化为列表(例如,使用<ul>
和<li>
元素)。
我想添加这个,你要替换的菜单会放在你的模板中。希望有所帮助,但如果没有,我会回来并更具体。
我忘了提到它链接到的页面转到类别页面。见here.