You appear to be a bot. Output may be restricted
Description
Implement "oik_fields_loaded" for taxonomy to type relationships
Usage
oikx2t_fields_loaded();
Parameters
Returns
voidSource
File name: oik-types/oik-types.phpLines:
1 to 10 of 10
function oikx2t_fields_loaded() { $bw_x2ts = get_option( "bw_x2ts" ); if ( $bw_x2ts ) { //bw_trace2( $bw_x2ts ); foreach ( $bw_x2ts as $taxonomy => $bw_x2t ) { // bw_register_field_for_object_type( $bw_f2t['args']['field'], $bw_f2t['args']['type'] ); register_taxonomy_for_object_type( $bw_x2t['args']['taxonomy'], $bw_x2t['args']['type'] ); } } }View on GitHub