You appear to be a bot. Output may be restricted
Description
Implement "oik_fields_loaded" for oik-types taxonomiesWe can register the taxonomies either after or before all the types have been registered But we can't perform the mapping until both the taxonomy and the type have been registered
Usage
oiktax_fields_loaded();
Parameters
Returns
voidSource
File name: oik-types/oik-types.phpLines:
1 to 8 of 8
function oiktax_fields_loaded() { $bw_taxonomies = get_option( "bw_taxonomies" ); if ( $bw_taxonomies ) { foreach ( $bw_taxonomies as $taxonomy => $data ) { oiktax_register_taxonomy( $taxonomy, $data ); } } }View on GitHub