| | 185 | * Returns the title of a navigation menu |
| | 186 | * |
| | 187 | * @since 4.6.0 |
| | 188 | * |
| | 189 | * @param string $theme_location Location of a navigation menu in a theme. |
| | 190 | * @return string |
| | 191 | */ |
| | 192 | function wp_nav_menu_title( $theme_location ) { |
| | 193 | $title = ''; |
| | 194 | if ( $theme_location && ( $locations = get_nav_menu_locations() ) && isset( $locations[ $theme_location ] ) ) { |
| | 195 | $menu = wp_get_nav_menu_object( $locations[ $theme_location ] ); |
| | 196 | |
| | 197 | if ( $menu && $menu->name ) { |
| | 198 | $title = $menu->name; |
| | 199 | } |
| | 200 | } |
| | 201 | /** |
| | 202 | * Filter navigation menu title with the location of a navigation menu in a theme. |
| | 203 | * |
| | 204 | * @since 4.6.0 |
| | 205 | * |
| | 206 | * @param string $title Title of the navigation menu. |
| | 207 | * @param string $theme_location Location of a navigation menu in a theme. |
| | 208 | */ |
| | 209 | return apply_filters( 'wp_nav_menu_title', $title, $theme_location ); |
| | 210 | } |
| | 211 | |
| | 212 | /** |