Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Last active March 28, 2020 03:56
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Modify Bible version used by Bible Readings for Seriously Simple Podcasting
<?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;
}
?>
@DJIO
Copy link

DJIO commented Jan 25, 2020

That's awesome, I've just found several languages not listed in the plugin!
Thanks a lot for sharing this. =)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment