Code-Snippets-Functions/Execute a function on a child site/Wordfence/customize-captcha-message.txt

4 lines
292 B
Text

function my_wfls_registration_blocked_message() {
return '<strong>REGISTRATION BLOCKED</strong>: Registration could not be completed. Please visit our <a href="/contact/">contact page</a> for help.';
}
add_filter('wfls_registration_blocked_message', 'my_wfls_registration_blocked_message');