Skip to content

Instantly share code, notes, and snippets.

@jazzsequence
Created March 5, 2013 20:26
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 jazzsequence/5093962 to your computer and use it in GitHub Desktop.
Save jazzsequence/5093962 to your computer and use it in GitHub Desktop.
function change_euro( $content ) {
$content = str_replace( 'EUR', '€', $content);
return $content;
}
add_filter( 'the_content', 'my_change_ee_eur', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment