Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_filter( 'wp_nav_menu_secondary_items','wpsites_loginout_menu_link' );
  2.  
  3. function wpsites_loginout_menu_link( $menu ) {
  4. $loginout = wp_loginout($_SERVER['REQUEST_URI'], false );
  5. $menu .= $loginout;
  6. return $menu;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement