Skip to content

Instantly share code, notes, and snippets.

@evrpress
Last active February 27, 2017 09:59
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 evrpress/436912aa53681d3cc088 to your computer and use it in GitHub Desktop.
Save evrpress/436912aa53681d3cc088 to your computer and use it in GitHub Desktop.
append_date_to_auto_tag
function append_date_to_auto_tag($pattern, $post_type, $options, $post){
$pattern['content'] .= "<br>".'{'.$post_type.'_date:'.$options.'}';
return $pattern;
}
add_filter('mailster_auto_tag', 'append_date_to_auto_tag', 10, 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment