Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
56
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', 'main_menu_logout_link', 10, 2 );
  2.  
  3. function main_menu_logout_link( $items, $args ) {
  4.  
  5. if ($args->theme_location == '' && $args->menu == 'mainmenu') {
  6. if (is_user_logged_in()):
  7. $url = wp_logout_url(get_permalink());
  8. $items .= '<li class="logout-button"><a href=" ' . $url . '">Logout</a></li>';
  9. endif;
  10. }
  11. return $items;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement