S.a. diyerek konuya gireyim. Sitemde açtığım konular, en geç 2 dakika içerisinde indeks alıyor. Ancak resimlerin indeks alması 2-3 günü buluyor. Resimleri özgünleştirerek eklediğim için, bana sıkıntı yaratıyor geç indeks alması.
Bununla ilgili yapabileceğimiz bir şeyler var mı ? Bazı yerlerde, resim site haritası eklentisi kullanın demişler. Fakat wordpress'te, en son 2 yıl önce güncellenmiş bu eklenti.
Kullandığınız yöntem veya teknikler neler bu konuda ? Şimdiden görüş bildiren arkadaşlara teşekkür ederim.
Resimlere hızlı indeks aldırmanın yolları nelerdir ?
5
●732
- 31-05-2015, 20:35:51https://wordpress.org/plugins/udinra-all-image-sitemap/
https://wordpress.org/plugins/seo-image/ bir nebzede olsa etkilidir.Özellikle üst sıralara cıkmada. - 01-06-2015, 16:29:34
- 01-06-2015, 17:00:19smye bile gerek yok benim şuan mübalağasız index almayan resmim yok
2 kıyak daha geçelim vatandaşa
wp upload ettiğiniz resimlerin medium boyu için sitemap
<?php include('wp-config.php'); include('wp-load.php'); echo '<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'; $args = array( 'numberposts' => '20' ); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $recent ){ if($images = get_children(array( 'post_parent' => $recent["ID"], 'post_type' => 'attachment', 'numberposts' => -1, // show all 'post_status' => null, 'post_mime_type' => 'image', ))) { foreach($images as $image) { $atturl = wp_get_attachment_medium_url($image->ID); $attlink = get_attachment_link($image->ID); $atttitle = apply_filters('the_title',$image->post_title); echo"\r\n <url>\r\n "; echo"<loc>"; echo $attlink; echo "</loc>\r\n "; echo "<image:image>\r\n "; echo "<image:loc>"; echo $atturl; echo "</image:loc>\r\n "; echo "</image:image>\r\n "; echo "</url>"; } } } echo"\r\n </urlset>"; ?>bu da thumbnail sitemap
<?php include('wp-config.php'); include('wp-load.php'); echo '<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'; $args = array( 'numberposts' => '20' ); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $recent ){ if($images = get_children(array( 'post_parent' => $recent["ID"], 'post_type' => 'attachment', 'numberposts' => -1, // show all 'post_status' => null, 'post_mime_type' => 'image', ))) { foreach($images as $image) { $atturl = wp_get_attachment_thumb_url($image->ID); $attlink = get_attachment_link($image->ID); $atttitle = apply_filters('the_title',$image->post_title); echo"\r\n <url>\r\n "; echo"<loc>"; echo $attlink; echo "</loc>\r\n "; echo "<image:image>\r\n "; echo "<image:loc>"; echo $atturl; echo "</image:loc>\r\n "; echo "</image:image>\r\n "; echo "</url>"; } } } echo"\r\n </urlset>"; ?>