Well I have decided after my recent post to share some SEO tips with you.. This one is to do with titles and your keywords, see if you keywords reflect the title of your page you will be given a higher rank in the search engines than a page with similar common keywords. This is a direct method of address this site wide with only a few lines of code.
In your theme.html you will have a meta keyword field it will currently look like:
<meta name="keywords" content="<{$xoops_meta_keywords}>" />
You will need to add this bit of code to it to include your sitename and page title in the keywords allowing for a better rank..
<meta name="keywords" content="<{php}>$pg_title = $this->_tpl_vars['xoops_pagetitle'].','.$this->_tpl_vars['xoops_sitename'];
$pg_title = str_replace(' ',',',$pg_title);
$pg_title = str_replace('-',',',$pg_title);
$pg_title = str_replace('|',',',$pg_title);
$pg_title = str_replace(':',',',$pg_title);
$pg_title = str_replace('=',',',$pg_title);
$pg_title = str_replace('&',',',$pg_title);
$pg_title = str_replace(')','',$pg_title);
$pg_title = str_replace('(','',$pg_title);
$pg_title = str_replace('[','',$pg_title);
$pg_title = str_replace(']','',$pg_title);
$pg_title = str_replace('{','',$pg_title);
$pg_title = str_replace('}','',$pg_title);
$pg_title = str_replace('and',',',$pg_title);
$pg_title = str_replace('the',',',$pg_title);
$pg_title = str_replace(',,',',',$pg_title);
$pg_title = str_replace(',,',',',$pg_title);
$pg_title = str_replace(',,',',',$pg_title);
echo $pg_title;<{/php}>,<{$xoops_meta_keywords}>" />
isn't smarty great you can alter one file and have your site wide a keyword spread that offer better ranking as all the keywords of the title of the page come first.
There you go
Later Yall!!