Skip to content

Instantly share code, notes, and snippets.

@BruceMcKinnon
Created August 30, 2021 23:25
Show Gist options
  • Save BruceMcKinnon/881bb9eac8c85be7aba98c9260fae599 to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/881bb9eac8c85be7aba98c9260fae599 to your computer and use it in GitHub Desktop.
Change Wordpress Register Link
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