Kod: Tümünü seç
<meta name="resource-type" content="document" />
<meta http-equiv="content-type" content="text/html; charset=US-ASCII" />
<meta http-equiv="content-language" content="en-us" />
<meta name="author" content="Harriet Smith" />
<meta name="contact" content="harrietsmith@harrietsmith.us" />
<meta name="copyright" content="Copyright (c)1997-2004
Harriet Smith. All Rights Reserved." />
<meta name="description" content="Story about my dog
giving birth to puppies." />
<meta name="keywords" content="stories, tales, harriet, smith,
harriet smith, storytelling, day, life, dog, birth, puppies, happy" />http://googlewebmastercentral.blogspot. ... a-tag.html
Edit : Googlenin bir dediği bir dediğini tutmuyor
http://support.google.com/news/publishe ... wer=116037
Biz en iyisi Meta tag kullanalım , peki ama bu nasıl olacak yani wordpress bir içerik yönetim sistemi ve eğer temanızın header.php kısmına statik bir meta bilgisi girilirse her bir sayfada aynı meta tag görünecek buda yanlış olacaktır bu nedenle dinamik ve sayfaya göre meta üreten bir kod kullanılmalıdır (aşağıdaki kod)
Kod: Tümünü seç
<meta name="description" content="<?php if ( is_single() ) {
single_post_title('', true);
} else {
bloginfo('name'); echo " - "; bloginfo('description');
}
?>" />kaynak:
http://codex.wordpress.org/Meta_Tags_in_WordPress

