You appear to be a bot. Output may be restricted
Description
Ajax shortcode syntaxDisplay the syntax of the requested shortcode
Usage
oik_ajax_load_shortcode_syntax();
Parameters
Returns
voidSource
File name: oik/includes/oik-ajax.phpLines:
1 to 10 of 10
function oik_ajax_load_shortcode_syntax() { do_action( "oik_add_shortcodes" ); oik_require( "includes/oik-sc-help.php" ); $shortcode = bw_array_get( $_REQUEST, 'shortcode', 'oik' ); $sc_syntax = _bw_lazy_sc_syntax( $shortcode ); $sc_json = json_encode( $sc_syntax ); bw_trace2( $sc_json, "sc_json" ); echo $sc_json; die(); }View on GitHub View on Trac