You appear to be a bot. Output may be restricted
Description
Handle the oik-shortcodes/%oik-shortcode%/%oik-function%/ requestIs it worth doing this?
Usage
oiksc_template_redirect();
Parameters
Returns
voidSource
File name: oik-shortcodes/oik-shortcodes.phpLines:
1 to 10 of 10
function oiksc_template_redirect() { $oik_shortcode = get_query_var( "oik-shortcode" ); $oik_function = get_query_var( "oik-function" ); bw_trace2( $oik_shortcode, "oik-shortcode", false ); bw_trace2( $oik_function, "oik-function", false ); if ( $oik_shortcode ) { oik_require( "admin/oik-shortcodes.php", "oik-shortcodes" ); oiksc_lazy_redirect( $oik_shortcode, $oik_function ); } }View on GitHub