Skip to content

Instantly share code, notes, and snippets.

@larodiel
Created January 13, 2018 18:34
Show Gist options
  • Save larodiel/f1d2cb060044508da9c4641b090c6649 to your computer and use it in GitHub Desktop.
Save larodiel/f1d2cb060044508da9c4641b090c6649 to your computer and use it in GitHub Desktop.
Remove WP Contact 7 input wrap
add_filter('wpcf7_form_elements', function($content) {
$content = preg_replace('/<(span).*?class="\s*(?:.*\s)?wpcf7-form-control-wrap(?:\s[^"]+)?\s*"[^\>]*>(.*)<\/\1>/i', '\2', $content);
return $content;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment