• I have a css gallery. I do not use any content instead i use custom meta like for images i use

    <img src="<?php bloginfo('template_directory'); ?>/thumb.php?src=<?php bloginfo('url'); ?>/<?php echo get_post_meta($post->ID, "thumb", true); ?>&h=200&w=200&zc=1" alt="<?php the_title();?>" height="200" width="200" />

    I would like to know on how could i integrate the images in the blogs rss feed

Viewing 1 replies (of 1 total)
  • Thread Starter Ali Hussain

    (@b4db0y)

    i have also tried using

    function insertAds($content) {
        $image = get_post_meta($post->ID, 'thumb', true);
        $content = $content.'<img src="'.$image.'" /><hr />';
        return $content;
    }
    add_filter('the_excerpt_rss', 'insertAds');
    add_filter('the_content_rss', 'insertAds');

    but it doesn’t seem to work

Viewing 1 replies (of 1 total)
  • The topic ‘Images in RSS’ is closed to new replies.