Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Static home page doesn’t load page title Re: Static home page doesn’t load page title

#64498
clokey2k
Participant

I don’t think ‘wp_title()’ outputs a homepage title. Maybe create a seperate title option using ‘is_home()’:


echo "Homepage |"; bloginfo('name');
} else {
wp_title('$bullet;','true','right'); bloginfo('name');
}
?>

Something like this could work – not tested it though!