Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function register_my_menus() {
- register_nav_menus(
- array(
- 'primary-menu' => __( 'Primary Menu' ),
- 'secondary-menu' => __( 'Secondary Menu' )
- )
- );
- }
- add_action( 'init', 'register_my_menus' );
- ?>
Advertisement
Add Comment
Please, Sign In to add comment