You appear to be a bot. Output may be restricted
Description
Implement "oik_fields_loaded" for oik-types fieldsWe can register the fields either after or before all the types have been registered But we can't perform the mapping until both the field and the type have been registered. ? 2013/11/26 This is a bit of a shame since we really only need to know about the field when it's actually being used. Ditto for most of the information about a post_type. If it's not being referenced anywhere then why do we need to bother with the details.
Usage
oikfie_fields_loaded();
Parameters
Returns
voidSource
File name: oik-types/oik-types.phpLines:
1 to 8 of 8
function oikfie_fields_loaded() { $bw_fields = get_option( "bw_fields" ); if ( $bw_fields ) { foreach ( $bw_fields as $field => $data ) { oikfie_register_field( $field, $data ); } } }View on GitHub