Matthew Vaccaro

Guns, God, Country, and Code
  • Index
  • Blog
  • Snippets
  • Style the Inside of Your Blog Name

    Ever wanted to style the inside of your blog name or blog title with CSS tags? Well here’s an easy way to do it.

    <?php
    
    $blogName = get_bloginfo('name');
    
    $blogNamePiece = explode(" ", $blogName);
    //This is to check that our blogName is printing out, as a test.
    //echo $blogName;
    
    echo $blogNamePiece[0].' <span>'.$blogNamePiece[1].'</span> '.$blogNamePiece[2];
    
    ?>
    Go Back