Created
August 5, 2025 21:16
-
-
Save brinyemp4/320ff11529961b96b4ad5e7d062fa9de to your computer and use it in GitHub Desktop.
Change default WP registration url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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