Guest User

Untitled

a guest
Jan 18th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. function add_login_logout_register_menu( $items, $args )
  2. {
  3. if ( $args->theme_location != 'secondary-menu' )
  4. {
  5. return $items;
  6. }
  7.  
  8. if ( is_user_logged_in() )
  9. {
  10. $current_user = wp_get_current_user();
  11. $items .= "HOLA " . esc_html( $current_user->user_login ) . " | ";
  12. $items .= '
  13. <a href="' . wp_logout_url() . '">CERRAR SESIÓN</a>
  14. ';
  15. }
  16. else
  17. {
  18. $items .= '
  19. <a href="/login”>INICIAR SESIÓN</a> |
  20. ';
  21. $items .= '
  22.  
  23. <a href="/registro">CREAR CUENTA</a>
  24. ';
  25. }
  26. return $items;
  27. }
  28.  
  29. add_filter( 'wp_nav_menu_items', 'add_login_logout_register_menu', 199, 2 );
Add Comment
Please, Sign In to add comment