Skip to content

Instantly share code, notes, and snippets.

@mspalex
mspalex / wphack1.php
Last active January 30, 2016 16:20
Wordpress - Have different Menus for Logged In users
<?php
//This is the normal wordpress menu code
wp_nav_menu( array(
'theme_location' => 'primary',
'menu_class' => 'primary-menu',
'menu_id' => 'primary-menu',
'container' => false
) );
?>