Thread Starter
wpboy
(@wpboy)
I disabled ALL plugins, used standard Twenty One theme just to check it.
Thread Starter
wpboy
(@wpboy)
Downgraded to 3.1.2 but at least it works! Waiting for proper resolution though for 3.2
I found a solution, you might want to check this parameter:
if (is_front_page() )
So my Title tag is now like this
<title><?php if (is_front_page()) { bloginfo('name'); } else if (is_single() || is_page() || is_archive()) {wp_title(false); } else { bloginfo('name'); } ?></title>
Tags: static home page doesn’t load page title / empty title
Thread Starter
wpboy
(@wpboy)
Strange, it seems somewhat to do with classes. I still figured out I can use $post object in that sense; the filter functions / seems the one that been spoiled up;
anyways – this is good bye to WP 2.0.3 -;)