wpcf7_is_email

wpcf7_is_email

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: contact-form-7.5.9.3

apply_filters('wpcf7_is_email') is found 1 times:

  • /includes/validation-functions.php line 24
     * Checks whether the given text is a well-formed email address.
     */
    function wpcf7_is_email( $text ) {
    	$result = is_email( $text );
    	return apply_filters( 'wpcf7_is_email', $result, $text );
    }
    
    
    /**
     * Checks whether the given text is a well-formed URL.
     */