当用户类型为Artist时,我想从Woocommerce菜单中隐藏Downloads
。
答案 0 :(得分:2)
将此代码添加到主题的“ functions.php”中。
function custom_my_account_menu_items( $items ) {
if( is_user_logged_in() ) {
$user = wp_get_current_user();
$role = ( array ) $user->roles;
if($role[0]=="artist") // change role name if different
unset($items['downloads']);
}
return $items;
}
add_filter( 'woocommerce_account_menu_items', 'custom_my_account_menu_items' );