Advertisement
grappler

Top menu log in

Nov 3rd, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1.         <?php if (has_nav_menu('top-menu', 'responsive')) { ?>
  2.             <?php if ( is_user_logged_in() ) {
  3.             wp_nav_menu(array(
  4.                     'container'       => '',
  5.                     'fallback_cb'     =>  false,
  6.                     'menu_class'      => 'top-menu',
  7.                     'theme_location'  => 'top-menu-logged-in')
  8.                     );
  9.         } else {
  10.                 wp_nav_menu(array(
  11.                     'container'       => '',
  12.                     'fallback_cb'     =>  false,
  13.                     'menu_class'      => 'top-menu',
  14.                     'theme_location'  => 'top-menu')
  15.                     );
  16.         }
  17.         ?>
  18.         <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement