You appear to be a bot. Output may be restricted
Description
oik_api 404 handler
Usage
oiksc_404_handler::handle_oik_api( $text );
Parameters
- $text
- ( mixed ) required –
Returns
voidSource
File name: oik-shortcodes/classes/class-oiksc-404-handler.phpLines:
1 to 12 of 12
function handle_oik_api( $text ) { $atts = array( "post_type" => "oik_api" , "orderby" => 'title' , "numberposts" => 10 , "meta_key" => "_oik_api_name" , "meta_compare" => "LIKE" //, "meta_value" => $this->another_like() ); $atts = $this->another_like_api( $atts ); $text = $this->perform_queries( $atts ); return( $text ); }View on GitHub