Skip to content

Instantly share code, notes, and snippets.

@iqbalmauludy
Created June 6, 2017 19:20
Show Gist options
  • Save iqbalmauludy/48cee39fdd81ec2fcb8e4d342f2ed496 to your computer and use it in GitHub Desktop.
Save iqbalmauludy/48cee39fdd81ec2fcb8e4d342f2ed496 to your computer and use it in GitHub Desktop.
penggunaan untuk lebih dari satu menu
function register_my_menus() {
register_nav_menus(
array(
'menu-baru' => __( 'New Menu' ),
'second-menu' => __( 'Second Menu' )
)
);
}
add_action( 'init', 'register_my_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment