xmlns type of felan tanımlanmamış senin ki sadece site içinde sayfalama yapmış ama arama motoruna sayfa yapını bildirmiyor. Şöyle bir bilgi almıştım forumdan shaka nickli arkadaştan uygula istersen.

AŞAĞIDAKİ KODU FUCTIONS.PHP YAPIŞTIR


function seobreadcrumbs() {
if ((is_page() && !is_front_page()) || is_home() || is_category() || is_single()) {
echo '
';
echo 'Anasayfa »';
$post_ancestors = get_post_ancestors($post);
if ($post_ancestors) {
$post_ancestors = array_reverse($post_ancestors);
foreach ($post_ancestors as $crumb)
echo ''.get_the_title($crumb).'»';
}
if (is_category() || is_single()) {
$category = get_the_category();
echo ''.$category[0]->cat_name.'»';
}
if (!is_category())
echo ''.get_the_title().'';
echo '
';
}
}



AŞAĞIDAKİ KODUDA SAYFALAMANIN DÖKÜLMESİNİ İSTEDİĞİN YERE YAPIŞTIR



Fuctions.php hata verince ben de aşağıda ki gibi bir yöntem izledim sorunsuz oldu.