Filter the Contact Form required field text
Parameters
- $var
string Required field text. Default is "(required)".
Changelog
- Introduced in Jetpack 3.8.0
How to use this hook
Notes
You can use that filter to change the “Required” text in the Contact Form. Here is an example:
function jeherve_custom_required() {
return 'this is important';
}
add_filter( 'jetpack_required_field_text', 'jeherve_custom_required' );