我想得到顶级类别的父级是“Wedgewood”,所以我给它一个不同的菜单和不同的模板,我写的到目前为止,但它不适用,除了“Wedgewood”类别wegdwood是我的顶级类别,我希望它适用于它下面的所有类别
在标题中。php
if (is_product_category(‘wedgwood’)) {
wp_nav_menu(array(‘menu’=>’wedgwood-menu’ ));
//I want to add here the code that links to another template which is wedgwood-template.php
}
在函数中。php
//register the custom menus
function register_my_menus() {
register_nav_menus(
array(‘wedgwood-menu’ => __( ‘Wedgwood Menu’ ))
); }
add_action( ‘init’, ‘register_my_menus’ );
所以我需要一个解决方案