Modify Bible version 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_version', 'my_bible_version', 10, 2 ); | |
function my_bible_version ( $version, $episode_id ) { | |
$version = 'NKJV'; // All available versions are listed here: https://www.biblegateway.com/versions/ | |
return $version; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's awesome, I've just found several languages not listed in the plugin!
Thanks a lot for sharing this. =)