• 21-02-2020, 19:36:02
    #1
    merhaba arkadaşlar google news kayıtlı sitemde news.google.com adresinde arama yaptığımız sitemiz çıkıyor fakat haberlerin sağ tarafında bulunan resimler gözükmüyor. Wordpress kullanıyorum. Resimlerin çıkması için herhangi bir eklenti mi kullanmamız gerekli.


  • 21-02-2020, 19:40:59
    #2
    Hocam RSS ile öne çıkan resimler için ücretli destek verebilirim
  • 21-02-2020, 19:42:09
    #3
    eski news kayıtlı hocam sitem yinede yapabilirmisin?
  • 21-02-2020, 19:48:10
    #4
    btnaslan adlı üyeden alıntı: mesajı görüntüle
    Hocam RSS ile öne çıkan resimler için ücretli destek verebilirim
    functions.php'e bu kodu ekleyin:
     function featuredtoRSS($content) {global $post;if ( has_post_thumbnail( $post->ID ) ){$content = '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;}return $content;} add_filter('the_excerpt_rss', 'featuredtoRSS');add_filter('the_content_feed', 'featuredtoRSS');