Skip to content

Instantly share code, notes, and snippets.

@tribulant
Created October 29, 2014 14:05
Show Gist options
  • Save tribulant/0927e04a2f3bf3cfce1e to your computer and use it in GitHub Desktop.
Save tribulant/0927e04a2f3bf3cfce1e to your computer and use it in GitHub Desktop.
Newsletter plugin: Filter - wpml_wpmlcontent_after_replace
<?php
function replace_content($body = null) {
// You can define your own $body content here
return $body;
}
add_filter('wpml_wpmlcontent_after_replace', 'replace_content', 10, 1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment