Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Last active October 27, 2019 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlashbrooke/68d2f2e88cc50fbafbce1b6688117d97 to your computer and use it in GitHub Desktop.
Save hlashbrooke/68d2f2e88cc50fbafbce1b6688117d97 to your computer and use it in GitHub Desktop.
Modify the URL used by Bible Readings for Seriously Simple Podcasting
<?php
add_filter( 'ssp_bible_readings_url', 'my_bible_reading_url', 10, 4 );
function my_bible_reading_url ( $url, $episode_id, $bible_reading, $version ) {
// Include logic here to modify the URL
return $url;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment