Google Botlarının forumunuzu Tam içeriğe göre listelemesi ve konu başlıklarını Anahtar Kelime olarak tanıması için ufak bi Değişiklik yapmamız gerekiyor..
kullandığınız temada index.template.php içinde bu kodu bulun
Code:
function template_main_above()
{
global $context, $settings, $options, $scripturl, $txt, $modSettings;
ve hemen altına bu kodları ekleyin
Code:
$stop_words= array("I "," a "," about "," an "," are "," as "," at "," be "," by "," com "," de "," en "," for "," from "," how ","How "," in "," is"," it "," la "," of "," on "," or ","Or "," that "," the ","The "," this "," to "," was "," what "," when "," where "," who ","Who "," will "," with "," und "," the "," www ","!",".","?","=","-");
$keywords_ = str_replace($stop_words," ",$context['page_title']);
$keywords_ = preg_replace ( "/\s\s+/" , " " , $keywords_);
$keywords_ = str_replace(" ",", ",trim($keywords_));
ayrıca bu metaları kullandığınızda robotlar için izin belgesi olan robots.txt dosyasını kullanmanıza gerek kalmaz ve siteniz daha hızlı ve tam içeriğe göre listelenir.
Hiç yorum yok:
Yorum Gönder