wpcf7_is_url

wpcf7_is_url

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

See hook in core

Displaying hooks found in version: contact-form-7.5.9.3

apply_filters('wpcf7_is_url') is found 1 times:

  • /includes/validation-functions.php line 34
     */
    function wpcf7_is_url( $text ) {
    	$scheme = wp_parse_url( $text, PHP_URL_SCHEME );
    	$result = $scheme && in_array( $scheme, wp_allowed_protocols(), true );
    	return apply_filters( 'wpcf7_is_url', $result, $text );
    }
    
    
    /**
     * Checks whether the given text is a well-formed telephone number.
     */