Quote:
Originally Posted by krohnathlonman
well, it won't get that great of search positioning unless the thread titles are inserted into the HTML page titles.... Looks like it'll take a bit of rewriting to get this in it's current form.
|
you're right, but it's simple!
open archive_functions.php
find:
PHP Code:
$header = "
<html>
<head><title>$title</title></head>
<base href=\"$forumurl/\">
<body>
change to:
PHP Code:
$header = "
<html>
<head>
<title>$threadinfo[title] - $title</title>
<meta name=\"keywords\" content=\"$threadinfo[title]\">
<meta name=\"description\" content=\"$threadinfo[title]\">
<base href=\"$forumurl/\">
</head>
<body>