Created
June 6, 2017 19:20
-
-
Save iqbalmauludy/48cee39fdd81ec2fcb8e4d342f2ed496 to your computer and use it in GitHub Desktop.
penggunaan untuk lebih dari satu menu
This file contains hidden or 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
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