Tamilish / பிரபல

பொன்னியின் செல்வன் - கட்டுரைகள் !!

காஞ்சித் தலைவன்

::: தேன்தமிழ் :::

Wednesday, December 5, 2007

Change the header name in wordpress

First you have to find the below code in header.php file.


if (is_home()) {bloginfo(’name’) ;} else { wp_title(’ ‘);}


After that delete this code and paste the below one


if(is_home()) {
bloginfo(’title’);
echo ‘ | ‘;
bloginfo(’description’);
} else{
wp_title(”);
echo ‘ | ‘;
bloginfo(’name’);
}

No comments: