WpCode.net

Daily Wordpress Code Snippet

How to Name a wp menu with their location

| 0 comments

Pin It

This snippet is to give to a menu the name based on it location, it’s an automatic operation based on the function above. Add this code to your function.php Continue reading

function wpc_menu_name($location){
    if(!has_nav_menu($location)) return false;
    $menus = get_nav_menu_locations();
    $menu_title = wp_get_nav_menu_object($menus[$location])->name;
    return $menu_title;
}

Leave a Reply

Required fields are marked *.

*