Title: knob1's Replies | WordPress.org

---

# knob1

  [  ](https://wordpress.org/support/users/knob1/)

 *   [Profile](https://wordpress.org/support/users/knob1/)
 *   [Topics Started](https://wordpress.org/support/users/knob1/topics/)
 *   [Replies Created](https://wordpress.org/support/users/knob1/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/knob1/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/knob1/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/knob1/engagements/)
 *   [Favorites](https://wordpress.org/support/users/knob1/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] Customisation of Podcast Archive](https://wordpress.org/support/topic/customisation-of-podcast-archive/)
 *  Thread Starter [knob1](https://wordpress.org/support/users/knob1/)
 * (@knob1)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/customisation-of-podcast-archive/#post-6282956)
 * Ok, I found a Statement from the author, that he won’t release the example template
   from southerncrosschurch:
 * The template used on the Southern Cross Church site is actually a custom template
   that I built myself specifically for that site, so it’s not a publicly available
   thing. If you want something like that then I recommend asking a developer to
   build it for you.
 * Source: [http://plugin318.rssing.com/chan-14072756/all_p48.html](http://plugin318.rssing.com/chan-14072756/all_p48.html)
 * During the last hours I tried around & read the code. Maybe this is helpful for
   anyone (I’m not finished yet).
 * I wanted to get all the series and every episode that belongs to the series (
   with all the meta details) and all of that in a custom page template
 * This is what I did:
 *     ```
       global $ss_podcasting;
   
       $serien_array = array();
       $casts = $ss_podcasting->get_podcast();
   
       //adds every name of a series to an array
       foreach ($casts as $cast) {
       	if (isset($cast->title)){
       		array_push($serien_array, $cast->title);
       	}
       }
   
       // this loop fetches every podcast episode within the series
       foreach ($serien_array as $serie) {
       	?><h3><u><?php echo $serie ?></u></h3><?php
   
       	$episoden_in_serie = $ss_podcasting->get_podcast(array('series'=>$serie, 'content'=>'episodes'));
   
       		foreach ($episoden_in_serie as $episode) {
       			if(is_object($episode)){
       				?><h4><?php echo $episode->post_title ?></h4><?php
       				$audio_player = $ss_podcasting->podcast_episode($episode->ID, array('player'));
       				echo $audio_player;
       				echo $episode->post_content; // the content of the podcast
       				echo $ss_podcasting->get_episode_download_link($episode->ID); // the download link
       				echo $ss_podcasting->get_file_duration($ss_podcasting->get_enclosure($episode->ID)); // the duration
       			       echo $ss_podcasting->get_file_size($ss_podcasting->get_enclosure($episode->ID))['formatted']; // size of the podcast
       		}
       	}
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] Customisation of Podcast Archive](https://wordpress.org/support/topic/customisation-of-podcast-archive/)
 *  Thread Starter [knob1](https://wordpress.org/support/users/knob1/)
 * (@knob1)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/customisation-of-podcast-archive/#post-6282950)
 * Jeah.
    I’m also still interested in this. In the meantime I tried some other 
   Plugins, but none was able to do the things ssp can do.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] Customisation of Podcast Archive](https://wordpress.org/support/topic/customisation-of-podcast-archive/)
 *  Thread Starter [knob1](https://wordpress.org/support/users/knob1/)
 * (@knob1)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/customisation-of-podcast-archive/#post-6282914)
 * Hey,
 * Did I miss anything or is this problem solved already and I missed it?
    If this
   is true, than maybe you can give me a hint?
 * I would love to find anything that helps me to get any further.
 * Thank You!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Different posts on one page](https://wordpress.org/support/topic/different-posts-on-one-page-1/)
 *  Thread Starter [knob1](https://wordpress.org/support/users/knob1/)
 * (@knob1)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/different-posts-on-one-page-1/#post-6263565)
 * Thank You Matt!!
    I posted this question at 2 different places before, but no
   one could / wanted answer it.
 * I think this will do exactly what I was looking for!

Viewing 4 replies - 1 through 4 (of 4 total)