Skip to content

Instantly share code, notes, and snippets.

@ebinnion
Created January 20, 2013 21:31
Show Gist options
  • Save ebinnion/4581909 to your computer and use it in GitHub Desktop.
Save ebinnion/4581909 to your computer and use it in GitHub Desktop.
WordPress Title Tag
<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