Author Topic: How to list all podcasts in WordPress page?  (Read 2290 times)

Maigret

  • Full Member
  • **
  • Posts: 13
How to list all podcasts in WordPress page?
« on: August 19, 2011, 11:15:16 am »
Hi,

I'm using PowerPress since 2 years now ! But one feature is missing (or can't find how to do this). How can I list all podcasts in WordPress page like this :

Title / Description / Download podcast link / Date / Podcast size


I tried this using the feed provided by PowerPress and WordPress but I need media enclosure :
Code: [Select]
<?php
include_once(ABSPATH.WPINC.&#39;/rss.php&#39;); // path to include script
$feed fetch_rss(&#39;http://wpchannel.com/feed/podcast/&#39;); // specify feed url
$items array_slice($feed->items07); // specify first and last item


?>


<?php if (!empty($items)) : ?>
<?php foreach ($items as $item) : ?>
<h2><a href="<?php echo $item[&#39;link&#39;]; ?>"><?php echo $item[&#39;title&#39;]; ?></a></h2>
<p><?php echo $item[&#39;description&#39;]; ?></p>
<p><?php echo $item[&#39;pubdate&#39;]; ?></p>


<?php endforeach; ?>
<?php endif; ?>

Any idea ?