Created
August 5, 2021 18:22
-
-
Save jtsternberg/3091811043e067c65301d307c44f46c0 to your computer and use it in GitHub Desktop.
BibleGateway Links Shortcode modifications
This file contains hidden or 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
// To use YouVersion instead of BibleGateway, you can add this filter: | |
add_filter( 'dsgnwrks_bible_service', 'dsgnwrks_use_youversion' ); | |
function dsgnwrks_use_youversion() { | |
return 'youversion'; | |
} | |
// To use English Standard Version instead of NIV | |
apply_filters( 'dsgnwrks_bible_version', 'dsgnwrks_use_version_esv' ) | |
function dsgnwrks_use_version_esv() { | |
return 'esv'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment