Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

API List

Add or Remove API’s here.

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'manage_list' => __( 'Manage API List', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

// Hook into the 'init' action
add_action( 'init', 'custom_navigation_menus' );