You appear to be a bot. Output may be restricted
Description
Implement the "oik_fields_loaded" action for oik plugins server
Usage
oikp_init();
Parameters
Returns
void
Source
File name: oik-plugins/oik-plugins.php
Lines:
1 to 28 of 28
function oikp_init( ) { /* * We need to register the custom categories and associate them with mutiple post types * so we have to register these first, then associate them to the post_types when they are registered */ bw_register_custom_category( "required_version", null, "Required version" ); bw_register_custom_category( "compatible_up_to", null, "Compatible up to" ); bw_register_custom_tags( "oik_tags", null, "Plugin Tags" ); oik_register_oik_plugin(); oik_register_oik_pluginversion(); oik_register_oik_premiumversion(); add_action( 'add_meta_boxes', 'oikp_header_meta_box' ); bw_add_shortcode( "oikp_download", "oikp_download", oik_path("shortcodes/oik-plugins.php", "oik-plugins"), false ); // add_action( 'the_post', "oikp_the_post", 10, 1 ); // As a temporary workaround to a problem where oikp_the_content thinks we've gone recursive // stop jetpack from messing with opengraph tags // or stop wp_trim_excerpt() from being called when processing the 'get_the_excerpt' filter // 'get_the_excerpt'problem will probably not be fixed with #19927 or #26649 remove_action( 'wp_head', 'jetpack_og_tags' ); //remove_action( 'get_the_excerpt', 'wp_trim_excerpt' ); add_action( 'the_content', "oikp_the_content", 1, 1 ); add_action( "oik_admin_menu", "oikp_admin_menu" ); }