You mean the <title> tag ?
If I recall correctly you use the dynamic title function so you get category names in your titles, so the following code will look a little different, but I think you'll get the idea...
Near the top of the directory file you should see something like this..
| Code: |
if ($url_array[1] == "new.html"){$show="new";}
if ($url_array[1] == "popular.html"){$show="pop";}
if ($url_array[1] == "cool.html"){$show="cool";}
if ($url_array[1] == "add.html"){$show="add";}
if ($url_array[1] == "about.html"){$show="about";}
if ($url_array[1] == "review.html"){$show="review";}
if ($url_array[1] == "update.html"){$show="update";}
if ($url_array[1] == "owner.html"){$show="owner";}
if ($url_array[1] == "review_add.html"){$show="review_add";}
|
You can tweak this a bit so you'll have unique titles for these pages as well..
| Code: |
if ($url_array[1] == "new.html"){$show="new"; $addtitle=' The latest and greatest';}
|
note the preceding space in the custom page title above. You could do something similar for each of the page types, just assign a different string to the $addtitle variable
Then further down where you find the <title> tag, just add
echo $addtitle;