Skip to content

Instantly share code, notes, and snippets.

@jb510
Created July 25, 2017 16:15
Show Gist options
  • Save jb510/4e7e22ca2e12fbb2dcace6bc24f4bb59 to your computer and use it in GitHub Desktop.
Save jb510/4e7e22ca2e12fbb2dcace6bc24f4bb59 to your computer and use it in GitHub Desktop.
function my_capitalize_string($content) {
$content = str_replace('some string', 'SOME STRING',$content);
return $content;
}
add_filter('the_content','my_capitalize_string');
add_filter('the_excerpt','my_capitalize_string');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment