How Do I Add Pics To My Wordpress RSS Feed?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • IllTestYourGirls
    Ah My Balls
    • Feb 2007
    • 14311

    #1

    How Do I Add Pics To My Wordpress RSS Feed?

    Anyone know how I can add pictures to my wordpress rss feeds? Like the feed grabs one of the pictures in the post.

    And any recommendations for good rss feed widgets so I can place the rss feed on other sites? I see a few nice ones when I google for them, just want some feed back and suggestions.

  • fris
    Too lazy to set a custom title
    • Aug 2002
    • 55679

    #2
    Originally posted by IllTestYourGirls
    Anyone know how I can add pictures to my wordpress rss feeds? Like the feed grabs one of the pictures in the post.

    And any recommendations for good rss feed widgets so I can place the rss feed on other sites? I see a few nice ones when I google for them, just want some feed back and suggestions.

    if you have featured image try adding this to your functions.php of your theme

    Code:
    function thumb_feed($content) {
    global $post;
    if ( has_post_thumbnail( $post->ID ) ){
    $content = '' . get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'alt' => get_the_title(), 'title' => get_the_title(), 'style' => 'float:right;' ) ) . '' . $content;
    }
    return $content;
    }
    
    add_filter('the_excerpt_rss', 'thumb_feed');
    add_filter('the_content_feed', 'thumb_feed');
    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

    Comment

    • IllTestYourGirls
      Ah My Balls
      • Feb 2007
      • 14311

      #3
      Thanks fris ill try that.

      Comment

      • fris
        Too lazy to set a custom title
        • Aug 2002
        • 55679

        #4
        images show up fine though in my rss feeds using the built in gallery system
        Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

        Comment

        • IllTestYourGirls
          Ah My Balls
          • Feb 2007
          • 14311

          #5
          Strange my pics aren't. I am not putting them in as a gallery but inserting each individual picture, would that cause the picture not to show up in the feed?

          Comment

          • fris
            Too lazy to set a custom title
            • Aug 2002
            • 55679

            #6
            Originally posted by IllTestYourGirls
            Strange my pics aren't. I am not putting them in as a gallery but inserting each individual picture, would that cause the picture not to show up in the feed?
            probably ;)

            would have to look into running though the feed filter so it does work.
            Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

            Comment

            Working...