Skip to content

Instantly share code, notes, and snippets.

@tribulant
Created November 25, 2014 11:02
Show Gist options
  • Save tribulant/b2f6c3ffcde9d0381c00 to your computer and use it in GitHub Desktop.
Save tribulant/b2f6c3ffcde9d0381c00 to your computer and use it in GitHub Desktop.
Filter content of email
function replace_wpmlcontent($body = null) {
$newbody = preg_replace("/\[wpmlcontent\]/si", "testing this out", $body);
return $newbody;
}
add_filter('newsletters_theme_before_wpmlcontent_replace', 'replace_wpmlcontent', 10, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment