mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
https://www.wordfence.com/help/login-security/#customizing-captcha-behavior-with-wordpress-filters
4 lines
292 B
Text
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');
|