Last active
October 27, 2019 16:14
-
-
Save hlashbrooke/68d2f2e88cc50fbafbce1b6688117d97 to your computer and use it in GitHub Desktop.
Modify the URL used by Bible Readings for Seriously Simple Podcasting
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_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