Title: WP-API missing data for menu location
Last modified: January 31, 2017

---

# WP-API missing data for menu location

 *  Resolved [klihelp](https://wordpress.org/support/users/klihelp/)
 * (@klihelp)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/wp-api-missing-data-for-menu-location/)
 * WP-API doesn’t show any data for the registered custom menu location.
 *     ```
       // url/wp-json/wp/v2/menu-locations/nav-menu1
       {
       code: "rest_no_route",
       message: "No route was found matching the URL and request method",
       data: {
       status: 404
       }
       }
       ```
   
 *     ```
       // the plugin function.php
       //
       function mswp_register_menus(){
   
       	$theme_locations = get_option( MSWP_THEME_LOC_OPTION );
   
       	if( $theme_locations ){
       		foreach( $theme_locations as $loc ){
       			register_nav_menus( array(
       				$loc['slug'] => $loc['name']
       			) );
       		}
       	}
       }
       add_action( 'init', 'mswp_register_menus' , 20 );
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [klihelp](https://wordpress.org/support/users/klihelp/)
 * (@klihelp)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/wp-api-missing-data-for-menu-location/#post-8721221)
 * All ok,
    The issue is with wp-api-menus plugin. [https://wordpress.org/support/topic/invalid-meta-links-in-menu-locations/](https://wordpress.org/support/topic/invalid-meta-links-in-menu-locations/)
 *  Plugin Author [sevenspark](https://wordpress.org/support/users/sevenspark/)
 * (@sevenspark)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/wp-api-missing-data-for-menu-location/#post-8721416)
 * Glad you got it sorted, klihelp

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘WP-API missing data for menu location’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/menu-swapper.svg)
 * [Menu Swapper](https://wordpress.org/plugins/menu-swapper/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/menu-swapper/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/menu-swapper/)
 * [Active Topics](https://wordpress.org/support/plugin/menu-swapper/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/menu-swapper/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/menu-swapper/reviews/)

## Tags

 * [klihelp](https://wordpress.org/support/topic-tag/klihelp/)

 * 2 replies
 * 2 participants
 * Last reply from: [sevenspark](https://wordpress.org/support/users/sevenspark/)
 * Last activity: [9 years, 3 months ago](https://wordpress.org/support/topic/wp-api-missing-data-for-menu-location/#post-8721416)
 * Status: resolved