Skip to main content

better_messages_registration_url

REQUIREMENTS

To be able to implement this guide, you need to learn how to insert PHP snippets to your website.

You can find guide here: WP Beginner

Compatibility
This filter compatible with Better Messages 2.0.69 or higher

This filter allows to overwrite registration url which is used to display in Better Messages.

add_filter('better_messages_registration_url', function( $url ){
return 'https://google.com';
}, 10, 1 );