You appear to be a bot. Output may be restricted
Description
oik-plugins 404 handler
Usage
oiksc_404_handler::handle_oik_plugins( $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_plugins( $text ) { $like = $this->another_like(); $atts = array( "post_type" => "oik-plugins" , "orderby" => 'title' , "numberposts" => 10 , "meta_key" => "_oikp_slug" , "meta_value" => $like , "meta_compare" => "LIKE" ); $text = $this->perform_queries( $atts ); return( $text ); }View on GitHub