90+
January 16, 2015
June 25, 2013
Shortcode for linking Bible references to a BibleGateway page. Links open in a small popup window. Adds a convenient editor button for inserting the shortcode.
New in 0.1.3: Settings page to set Bible version and Bible search service. Both can be overridden via filters.
biblegateway-search-shortcode directory to the /wp-content/plugins/ directory.[biblegateway passage="John 3:16" display="For God so loved the world..."] or use the convenient editor buttons.If you run into a problem or have a question, contact me (contact form or @jtsternberg on twitter). I’ll add them here.
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, you can add this filter:
apply_filters( ‘dsgnwrks_bible_version’, ‘dsgnwrks_use_version_kjv’ )
function dsgnwrks_use_version_kjv() {
return ‘kjv’;
}
No previous versions available.