1
I am converting my WeBLog module over to wordpress module and while this excellent module has a great inbuilt URL/permalink it has rubbish page titles,
In WeBLog I used this kind of thing in index.php of the module:
Quote:
$logcat =$weblogcat->getCategory($entryObject->getVar('cat_id'));
$xoopsTpl->assign('title', $entryObject->getVar('title'));
$xoopsTpl->assign('xoops_pagetitle',
htmlentities($xoopsModule->name() .
' - ' . $cat_id ));
but where would i do this for the wordpress module.
having good page titles increase hits on my site 10 fold, (Via search engines) so i don't want to lose it.