Created
January 20, 2013 21:31
-
-
Save ebinnion/4581909 to your computer and use it in GitHub Desktop.
WordPress Title Tag
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<title><?php | |
if( is_home() ){ | |
echo 'Art of Blog - The Art of How to Start and Run a Blog'; | |
} | |
else if ( is_category() ) { | |
$category = get_the_category(); | |
echo $category[0]->cat_name . ' | Optiniche'; | |
} | |
else { | |
single_post_title() .' | Art of Blog'; | |
} ?> | |
</title> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment