Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created July 3, 2019 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/481122a5aea4a0779e6f3319534d7e90 to your computer and use it in GitHub Desktop.
Save plugin-republic/481122a5aea4a0779e6f3319534d7e90 to your computer and use it in GitHub Desktop.
<?php
/**
* Change the URL that users are redirected to
*/
function prefix_redirect_url( $url ) {
return 'http://yournewurl.com/';
}
add_filter( 'wcmo_redirect_url', 'prefix_redirect_url' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment