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