Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter knob1

    (@knob1)

    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

    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
    		}
    	}
    }
    Thread Starter knob1

    (@knob1)

    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.

    Thread Starter knob1

    (@knob1)

    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!

    Thread Starter knob1

    (@knob1)

    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)