Skip to content

Instantly share code, notes, and snippets.

@manters2000
Forked from ikoner/menu
Last active September 17, 2015 02:41
Show Gist options
  • Save manters2000/b54a10151dcfd9dfbe5a to your computer and use it in GitHub Desktop.
Save manters2000/b54a10151dcfd9dfbe5a to your computer and use it in GitHub Desktop.

Revisions

  1. manters2000 revised this gist Sep 17, 2015. No changes.
  2. @ikoner ikoner created this gist Feb 6, 2015.
    17 changes: 17 additions & 0 deletions menu
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    functions.php
    // register wp_nav_menu
    add_action( 'init', 'register_my_menus' );
    function register_my_menus() {
    register_nav_menus( array(
    'topMenu' => __( 'topMenu', 'smsApp' )
    )
    );
    }

    <?php wp_nav_menu( array(
    'container' => false,
    'theme_location' => 'topMenu',
    'items_wrap' => '<ul class="nav">%3$s</ul>'
    ) ); ?>

    admin -> Appearance -> Menus