Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Last active March 28, 2020 03:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlashbrooke/42df1ebaec9adf4c2f09350b6f7e1e47 to your computer and use it in GitHub Desktop.
Save hlashbrooke/42df1ebaec9adf4c2f09350b6f7e1e47 to your computer and use it in GitHub Desktop.
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