Created
October 5, 2018 07:13
-
-
Save Tuarisa/a03a66709873854199c4f5831ea33dbb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function get_menu() { | |
# Change 'menu' to your own navigation slug. | |
return wp_get_nav_menu_items('menu'); | |
} | |
add_action( 'rest_api_init', function () { | |
register_rest_route( 'custom', '/menu', array( | |
'methods' => 'GET', | |
'callback' => 'get_menu', | |
) ); | |
} ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment