Created
August 30, 2021 23:25
-
-
Save BruceMcKinnon/881bb9eac8c85be7aba98c9260fae599 to your computer and use it in GitHub Desktop.
Change Wordpress Register Link
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
add_filter( 'register', 'bl_register_link'); | |
function bl_register_link() { | |
$registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'New Customers - Register Now' ) ); | |
return $registration_url; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment