How to swap blog title and post title order?
-
Like this?
`<title><?php wp_title();
if ( is_single() )
_e(‘» Blog Archive’);
bloginfo(‘name’); ?></title>`or like this?
`<title><?php if ( is_single() )
_e(‘» Blog Archive’);
wp_title();
bloginfo(‘name’); ?></title>`And if I wanted simply a pipe | between the two, rather than Blog Archive, how would I accomplish that?
Thank you for your help!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to swap blog title and post title order?’ is closed to new replies.