Posted on June 27, 2007 |
No Comments
So, you built a nice new PHPTemplate theme. You followed the samples
and in your <title> tag, you place the $head_title
variable and in your section header you display the $title variable.
They are different titles, or are they?
Short answer is yes, they are. However if the module generating page content happens to use the
drupal_set_title() function, then the value of both title variables will be the same. This is not always what you want.
Some quick reading and modification of our template.php file resolved this for us.
Continue Reading...