Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. add_filter( 'wp_nav_menu_items', 'wti_loginout_menu_link', 10, 2 );
  2.  
  3. function wti_loginout_menu_link( $items, $args ) {
  4. if ($args->theme_location == 'primary') {
  5. if (is_user_logged_in()) {
  6. $items .= '<li><a href="'. wp_logout_url() .'">Log Out</a></li>';
  7. } else {
  8. $items .= '<li><a href="'. wp_login_url(get_permalink()) .'">Log In</a></li>';
  9. }
  10. }
  11. return $items;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement