Skip to content

Instantly share code, notes, and snippets.

@viankakrisna
Last active August 29, 2015 14:21
Show Gist options
  • Save viankakrisna/1f5fdc1f1caf90a18e20 to your computer and use it in GitHub Desktop.
Save viankakrisna/1f5fdc1f1caf90a18e20 to your computer and use it in GitHub Desktop.
var getWPJRA = function( baseUrl, child , callback){
if (baseUrl !== undefined ){
switch( child ) {
case undefined:
return jQuery.getJSON( '/' + baseUrl + "/wp-json" , callback);
break;
default:
return jQuery.getJSON( '/' + baseUrl + "/wp-json/" + child, callback);
}
} else if (baseUrl === undefined || baseUrl.length == 0) {
return jQuery.getJSON( "/wp-json" );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment