Topic: search engine google etc. keywords
okay i have 1.9 and want to set the keywords so google picks it up based on the words i use.
i have read the tutorials and it seems i go to the page_search? if that is the case - i still dont really understand how to format it with proper punctuation etc. where exactly do the words go? can some one show me please using the word televisions as an example? pls insert where the keyword would go. also if there are two key words, do you just use a comma and then two spaces? so television, dvd ?
thanks alot
$smarty->assign('keywords', stripslashes(htmlentities($requestKeywords, ENT_QUOTES, 'UTF-8')));
$template = 'search.tpl';
}
else if ($id != '' && !strstr($id, '|'))
{
$smarty->assign('keywords', stripslashes(htmlentities($id, ENT_QUOTES, 'UTF-8')));
$template = 'search.tpl';
}
else
{
$smarty->assign('keywords', stripslashes($keywords));
$template = 'posts-loop.tpl';
}
if (isset($_SESSION['search_pagination']))
{
$smarty->assign('pages', $_SESSION['search_pagination']);
}
?>