Hi,
Currently my wordpress header title looks so:
<title><?php wp_title(‘|’, true, ‘right’); ?><?php bloginfo(‘name’); ?></title>
But it displays only the Site Title from General Settings.
I want to change the header php code to :
<title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>
This code displays the Site Title and the Tagline as title on the blog. How to change that code? Do i need to change anything in index.php too ?