Open GoogleCodeExporter opened 9 years ago
i've traced the problem down to this part of thematic_wptitle()
if ( is_feed() || thematic_seo() )
return $wp_doctitle;
but thematic_seo() returns TRUE if no SEO plugin exists.... so the check should
be:
if ( is_feed() || !thematic_seo() )
return $wp_doctitle;
i should verify the other places in header-extensions are using thematic_seo
correctly.
Original comment by helgathe...@gmail.com
on 1 Jul 2012 at 2:58
Attachments:
tweaked patch.... just to reduce nested IF statements
Original comment by helgathe...@gmail.com
on 1 Jul 2012 at 3:08
Attachments:
i just discovered how to make branches! so i made a branch for this.
Original comment by helgathe...@gmail.com
on 2 Jul 2012 at 3:30
additionally, wp_title apparently has no support for custom taxonomies? need to
check on cpts too
Original comment by helgathe...@gmail.com
on 3 Jul 2012 at 1:24
Original issue reported on code.google.com by
helgathe...@gmail.com
on 1 Jul 2012 at 2:34