Skip to content

Instantly share code, notes, and snippets.

@micc83
Created June 23, 2016 09:40
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 micc83/ce02b5eca74c40c6a4a5447cd4652269 to your computer and use it in GitHub Desktop.
Save micc83/ce02b5eca74c40c6a4a5447cd4652269 to your computer and use it in GitHub Desktop.
Create custom tags for Wordpress Contact Form 7
<?php
add_filter( 'wpcf7_special_mail_tags', function ( $output, $name, $html ) {
if ($name === 'current_url'){
return "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
}
return $output;
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment