You appear to be a bot. Output may be restricted
Description
Functions to invoke when oik-ajax is loaded"oik_shortcode_result" is automatically invoked for each shortcode but not necessarily invoked for each paginatable output. Use "oik_navi_result" to enable ajaxified pagination when invoking the shortcode function directly. {@see bw_navi} If that's required you can invoke the filter yourself. BUT we have to be able to convert whatever's been called into a shortcode OR at least an AJAX/JSON request.
Usage
oik_ajax_loaded();
Parameters
Returns
voidSource
File name: oik-ajax/oik-ajax.phpLines:
1 to 9 of 9
function oik_ajax_loaded() { add_filter( "oik_shortcode_result", "oika_oik_shortcode_result", 11, 4 ); add_filter( "oik_navi_result", "oika_oik_shortcode_result", 11, 4 ); add_action( "wp_ajax_oik-ajax-do-shortcode", "oika_oik_ajax_do_shortcode" ); add_action( "wp_ajax_nopriv_oik-ajax-do-shortcode", "oika_oik_ajax_do_shortcode" ); add_filter( "oik_shortcode_atts", "oika_oik_shortcode_atts", 11, 3 ); add_filter( "oik_shortcode_content", "oika_oik_shortcode_content", 10, 3 ); }View on GitHub