Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created April 28, 2022 18:38
Show Gist options
  • Save wpmu-authors/8776d701d970f297e2e65d9d7ac83c27 to your computer and use it in GitHub Desktop.
Save wpmu-authors/8776d701d970f297e2e65d9d7ac83c27 to your computer and use it in GitHub Desktop.
function wpmu_nav_menus() {
register_nav_menus( array(
'primary' => __( 'Primary 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