Skip to content

Instantly share code, notes, and snippets.

@mattbeck
Created September 21, 2014 06:15
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 mattbeck/54a61278fdbf4873762c to your computer and use it in GitHub Desktop.
Save mattbeck/54a61278fdbf4873762c to your computer and use it in GitHub Desktop.
force relative urls in content
add_filter('the_content', 'my_content_filter');
function my_content_filter($content){
$content = str_ireplace('http://url-to-strip.com','',$content);
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment