Skip to content

Instantly share code, notes, and snippets.

@tribulant
Created October 30, 2014 14:09
Show Gist options
  • Save tribulant/58a3c0c294480ad43d9f to your computer and use it in GitHub Desktop.
Save tribulant/58a3c0c294480ad43d9f to your computer and use it in GitHub Desktop.
Remove [wpmlcontent]
<?php
function replace_wpmlcontent($body = null) {
return preg_replace("/\[wpmlcontent\]/si", "", $body);
}
add_filter('wpml_wpmlcontent_before_replace', 'replace_wpmlcontent', 10, 1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment