Created
April 18, 2017 13:41
-
-
Save developer-anuragsingh/cbd054063f6bd759651d73f915c9e10b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'wp_nav_menu_items', 'add_login_logout_register_menu', 199, 2 ); | |
function add_login_logout_register_menu( $items, $args ) { | |
//print_r($args); | |
if ( $args->menu != 'footer-1' ) { // Add links on specific menu | |
return $items; | |
} | |
if ( is_user_logged_in() ) { | |
$items .= '<li><a href="' . wp_logout_url('home') . '">' . __( 'Logout' ) . '</a></li>'; | |
} else { | |
$items .= '<li><a href="' . site_url('login') . '">' . __( 'Login' ) . '</a></li>'; | |
//$items .= '<li><a href="' . wp_registration_url() . '">' . __( 'Sign Up' ) . '</a></li>'; | |
} | |
return $items; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment