Quote:
	
	
		| 
					Originally Posted by grandmascrotum  Actually, here's another question I've just thought of. Say I wanted my individual post pages only to be titled only with the post name, without the added name of my blog after it...
 I feel like RawAlex helped me with this, I just need to search for it...
 | 
	
 This should do it 
	Code:
	<title><?php if (is_home()) {
bloginfo('name');
}else {
wp_title();
}?></title>