You appear to be a bot. Output may be restricted
Description
Return the handler for each post typeThis is only invoked for valid active post types We only create handlers for public post types
Usage
$array = oiksc_404_handler::handlers();
Parameters
Returns
array mapping of post type to implementing methodSource
File name: oik-shortcodes/classes/class-oiksc-404-handler.phpLines:
1 to 14 of 14
function handlers() { $this->handlers = array( "oik_api" => "handle_oik_api" , "oik_file" => "handle_oik_file" , "oik_class" => "handle_oik_class" , "oik_hook" => "handle_oik_hook" //, "oik-plugins => "handle_oik_plugins" // "oik-pluginversion // oik-premiumversion // oik-themes // oik-themeversion // oik-themiumversion ); return( $this->handlers ); }View on GitHub