Advertisement
iEmanuele

Redirect on logout

Nov 24th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. add_action('wp_logout', '_redirect_on_logout');
  2. function _redirect_on_logout(){
  3.     exit(
  4.         wp_redirect(
  5.             get_permalink(
  6.                 get_option('woocommerce_myaccount_page_id')
  7.             )
  8.         )
  9.     );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement