Skip to content

Instantly share code, notes, and snippets.

@markandcurry
Forked from galbaras/no_urls_allowed.php
Created August 30, 2016 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markandcurry/fdfb00e0f60ca74f4d8592b52eab2511 to your computer and use it in GitHub Desktop.
Save markandcurry/fdfb00e0f60ca74f4d8592b52eab2511 to your computer and use it in GitHub Desktop.
Function to invalidate Contact Form 7 input, unless the fields is of type "url" or has "url" in its name, i.e. it is meant for URLs
function no_urls_allowed( $result, $tag ) {
$tag = new WPCF7_Shortcode( $tag );
$type = $tag->type;
$name = $tag->name;
$value = isset( $_POST[$name] )
? trim( wp_unslash( strtr( (string) $_POST[$name], "\n", " " ) ) )
: '';
// If this is meant to be a URL field, do nothing
if ( 'url' == $tag->basetype || stristr($name, 'url') ) {
return $result;
}
// Check for URLs
$value = $_POST[$name];
$not_allowed = array( 'http://', 'https://', 'www.', '[url', '<a ', ' seo ' );
foreach ( $not_allowed as $na ) {
if ( stristr( $value, $na ) ) {
$result->invalidate( $tag, 'URLs are not allowed' );
return $result;
}
}
return $result;
}
add_filter( 'wpcf7_validate_text', 'no_urls_allowed', 10, 3 );
add_filter( 'wpcf7_validate_text*', 'no_urls_allowed', 10, 3 );
add_filter( 'wpcf7_validate_textarea', 'no_urls_allowed', 10, 3 );
add_filter( 'wpcf7_validate_textarea*', 'no_urls_allowed', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment