Skip to content

Instantly share code, notes, and snippets.

@brinyemp4
Created August 5, 2025 21:16
Show Gist options
  • Select an option

  • Save brinyemp4/320ff11529961b96b4ad5e7d062fa9de to your computer and use it in GitHub Desktop.

Select an option

Save brinyemp4/320ff11529961b96b4ad5e7d062fa9de to your computer and use it in GitHub Desktop.
Change default WP registration url
<?php
function iws_load_register_url() {
return site_url('/register');
}
add_filter('register_url', 'iws_load_register_url', 10);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment