Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created April 28, 2022 18:40
Show Gist options
  • Save wpmu-authors/87e0f124ef49808ddb1112f8f1a8932c to your computer and use it in GitHub Desktop.
Save wpmu-authors/87e0f124ef49808ddb1112f8f1a8932c to your computer and use it in GitHub Desktop.
function wpmu_nav_menus() {
register_nav_menus( array(
'primary' => __( 'Primary Navigation', 'wpmu-theme' ),
'sidebar' => __( 'Sidebar Navigation', 'wpmu-theme' ),
) );
}
add_action( 'after_setup_theme', 'wpmu_nav_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment