wpcf7_is_tel

wpcf7_is_tel

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

See hook in core

Displaying hooks found in version: contact-form-7.5.9.3

apply_filters('wpcf7_is_tel') is found 1 times:

  • /includes/validation-functions.php line 44
     */
    function wpcf7_is_tel( $text ) {
    	$text = preg_replace( '%[()/.*#\s-]+%', '', $text );
    	$result = preg_match( '/^[+]?[0-9]+$/', $text );
    	return apply_filters( 'wpcf7_is_tel', $result, $text );
    }
    
    
    /**
     * Checks whether the given text is a well-formed number.
     *