Description
Implement the "oik_fields_loaded" action for oik themes server
Usage
oikth_init();Parameters
Returns
voidSource
File name: oik-themes/oik-themes.phpLines:
1 to 19 of 19
function oikth_init( ) { oik_register_oik_count_fields(); oik_register_oik_theme(); oik_register_oik_themeversion(); oik_register_oik_themiumversion(); add_action( 'add_meta_boxes', 'oikth_header_meta_box' ); bw_add_shortcode( "oikth_download", "oikth_download", oik_path("shortcodes/oik-themes.php", "oik-themes"), false ); // add_action( 'the_post', "oikth_the_post", 10, 1 ); // As a temporary workaround to a problem where oikth_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 remove_action( 'wp_head', 'jetpack_og_tags' ); //remove_action( 'get_the_excerpt', 'wp_trim_excerpt' ); add_action( 'the_content', "oikth_the_content", 1, 1 ); add_action( "oik_admin_menu", "oikth_admin_menu" ); }View on GitHub
Called by
Invoked by
Calls
1 to 3 of 3
Call hooks
API Letters:
