Help with RSS feed
-
Trying to figure out why my feed only shows the latest post (there are 3 published posts currently).
here is what I have:
<?php query_posts('post_type=fiveminutespodcast'); while(have_posts()) : the_post(); ?> <item> <title><?php the_title_rss(); ?></title> <link><?php the_permalink_rss(); ?></link> <pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_post_time('Y-m-d H:i:s', true), false); ?></pubDate> <dc:creator>The Trinity Mission></dc:creator> <guid isPermaLink="false"><?php the_guid(); ?></guid> <description><![CDATA[Five Minutes for the Rest of Your Life is supported by a handful of faithful listeners. For more information, visit thetrinitymission.org/giving]]></description> <content:encoded><![CDATA[Five Minutes for the Rest of Your Life is supported by a handful of faithful listeners. For more information, visit thetrinitymission.org/giving]]></content:encoded> <?php rss_enclosure(); ?> <?php do_action('rss2_item'); ?> </item> <?php endwhile; ?>The bottom of this page shows the 3 posts that should be showing in the feed:
thetrinitymission.org/fiveminutespodcastThe page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Help with RSS feed’ is closed to new replies.