Skip to content

Instantly share code, notes, and snippets.

@albionselimaj
Created February 15, 2018 13:12
Show Gist options
  • Save albionselimaj/6362572248d713b2d1f18f5c0fa2871c to your computer and use it in GitHub Desktop.
Save albionselimaj/6362572248d713b2d1f18f5c0fa2871c to your computer and use it in GitHub Desktop.
Change WooCommerce logout URL
<?php
add_action( 'template_redirect', function() {
global $wp;
if ( isset( $wp->query_vars['customer-logout'] ) ) {
wp_redirect( get_permalink( $page_id ) );
exit;
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment