• 31-05-2015, 18:28:03
    #1
    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.
  • 31-05-2015, 18:41:01
    #2
    ben şahsen webmaster tools aracılığı ile google botu eklemiş olduğum resimlerin içeriğine getirtiyorum, ardından baktığımda indexlenmiş oluyor zaten
  • 31-05-2015, 20:35:51
    #3
    https://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
    #4
    https://www.r10.net/wordpress/1257091...-haritasi.html
    • Yeniceri
    Yeniceri bunu beğendi.
    1 kişi bunu beğendi.
  • 01-06-2015, 16:51:51
    #5
    @Yeniceri; sitemap vermiş Misafir; onu mutlaka koy sonrasında sosyal medya ile feci hızlı bir şekilde index alabilirsin resimlere kardeşim kib skypede görüşemiyoruz bu aralar

    Bu arada herkesin berat kandili mubarek olsun.
  • 01-06-2015, 17:00:19
    #6
    smye 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>";
    ?>
    • Sessiz
    Sessiz bunu beğendi.
    1 kişi bunu beğendi.