You appear to be a bot. Output may be restricted
Description
Implement "oik_shortcode_result" for oik-ajax
Usage
$string = oika_oik_shortcode_result( $result, $atts, $content, $tag );
Parameters
- $result
- ( string ) required – the output of the shortcode
- $atts
- ( array ) required – the shortcode parameters
- $content
- ( string ) required – the text content passed to the shortcode
- $tag
- ( string ) required – the shortcode tag
Returns
string $resultTO DO
This function only intercepts the results of shortcodes which produce paginated output We need something else to handle other ways that paginated output is produced.Source
File name: oik-ajax/oik-ajax.phpLines:
1 to 5 of 5
function oika_oik_shortcode_result( $result, $atts, $content, $tag ) { $result = oika_build_ajax_shortcode( $result, $atts, $content, $tag ); return( $result ); }View on GitHub