Skip to content

Instantly share code, notes, and snippets.

@tcelestino
Created August 12, 2013 00:38
Show Gist options
  • Save tcelestino/6207555 to your computer and use it in GitHub Desktop.
Save tcelestino/6207555 to your computer and use it in GitHub Desktop.
the best title wordpress
<?php if (is_home () ) {
bloginfo('name');
} elseif ( is_category() ) {
single_cat_title(); echo ' - ' ; bloginfo('name');
} elseif (is_single() ) {
single_post_title();
} elseif (is_page() ) {
bloginfo('name'); echo ': '; single_post_title();
} else {
wp_title('',true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment