Skip to content

Instantly share code, notes, and snippets.

@manters2000
manters2000 / menu
Last active September 17, 2015 02:41 — forked from ikoner/menu
Forked Gist
functions.php
// register wp_nav_menu
add_action( 'init', 'register_my_menus' );
function register_my_menus() {
register_nav_menus( array(
'topMenu' => __( 'topMenu', 'smsApp' )
)
);
}