Skip to content

Instantly share code, notes, and snippets.

@imjjss
Created May 13, 2012 01:51
Show Gist options
  • Save imjjss/2670212 to your computer and use it in GitHub Desktop.
Save imjjss/2670212 to your computer and use it in GitHub Desktop.
filter the name of your blog to be red every time it appears in a post
<?php
add_filter('the_content', 'styleBlogName');
function styleBlogName($content) {
$blogTitle = get_bloginfo('name');
$content = str_replace($blogTitle, '<span style="color: Red;">' . $blogTitle . '</span>', $content);
return $content;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment