Hi all, hope someone can help me with this please.
I'm developing a Child Theme for Thematic and I want to change the default layout of the title tag, as set by $doctitle in the 'header-extensions' file.
In my own 'functions.php' file I've tried lots of different ways to change what I want to no avail.
Basically, I want to remove the default 'tab' setting, and one of the new lines after the tag.
The best I've come up with is:
function easyaccess_doctitle($doctitle) {
return $doctitle . "\n";
}
add_filter('thematic_doctitle','easyaccess_doctitle');
All this returns in the html page is:
<title>Array</title>
Anyone got any suggestions please?