thebatclaudio / wp-rest-api-v2-menus

Adding menus endpoints on WP REST API v2
47 stars 23 forks source link

Bug fix: get menu's items from slug (issue #2) #3

Closed thebatclaudio closed 7 years ago

thebatclaudio commented 7 years ago

The wp_get_nav_menu_object($menu) function doesn't work with slug. So it was replaced by:

$locations = get_nav_menu_locations(); $menu = get_term( $locations[ $data['id'] ] );