You appear to be a bot. Output may be restricted
Description
Implement "oik_fields_loaded" for oik-types taxonomies
We 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
void
Source
File name: oik-types/oik-types.php
Lines:
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 ); } } }