This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'ssp_speakers_plural_label', 'ssp_speakers_plural_label_custom' ); | |
function ssp_speakers_plural_label_custom ( $label ) { | |
return 'Guests'; | |
} | |
add_filter( 'ssp_speakers_single_label', 'ssp_speakers_single_label_custom' ); | |
function ssp_speakers_single_label_custom ( $label ) { | |
return 'Guest'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'ssp_show_audio_player', '__return_false' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'ssp_episode_meta_details', 'ssp_series_title_in_meta', 10, 3 ); | |
function ssp_series_title_in_meta ( $meta, $episode_id, $context ) { | |
$series_title = get_the_term_list( $episode_id, 'series', 'Series: ', ', ' ); | |
$meta['series'] = $series_title; | |
return $meta; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'ssp_episode_meta_details', 'ssp_remove_download_link', 10, 3 ); | |
function ssp_remove_download_link ( $meta, $episode_id, $context ) { | |
unset( $meta['link'] ); | |
return $meta; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'ssp_episode_download_link', 'ssp_use_raw_audio_file_url', 10, 3 ); | |
function ssp_use_raw_audio_file_url ( $url, $episode_id, $file ) { | |
return $file; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'pre_get_posts', 'ssp_add_podcast_to_category_archives' ); | |
function ssp_add_podcast_to_category_archives( $query ){ | |
if( is_admin() ) { | |
return; | |
} | |
if( $query->is_tax('category') || $query->is_category()) { | |
$query->set('post_type', array( 'post', 'podcast' ) ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/podcast-download/.+ | |
/podcast-player/.+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global $ss_podcasting; | |
$audio_player = $ss_podcasting->episode_meta( $episode_id ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'init', 'ssp_add_categories_to_podcast', 15 ); | |
function ssp_add_categories_to_podcast () { | |
register_taxonomy_for_object_type( 'category', 'podcast' ); | |
} |
OlderNewer