获取菜单 title by location

更新 2020年5月1日 发布 2019年8月10日  WP & Websites
//获取菜单title by location,为了循环,见index.php
function wpse45700_get_menu_by_location( $location ) {
    if ( empty( $location ) ) return false;

    $locations = get_nav_menu_locations();
    if ( !isset( $locations[ $location ] ) ) return false;

    $menu_obj = get_term( $locations[ $location ], 'nav_menu' );

    return $menu_obj;
};