You appear to be a bot. Output may be restricted
Description
Theme an array of custom fields
Usage
bw_format_field( $customfield );
Parameters
- $customfield
- ( array ) required – array of custom field data – an element from $bw_fields
Returns
voidSource
File name: oik/libs/bw_fields.phpLines:
1 to 10 of 10
function bw_format_field( $customfield ) { // bw_trace2(); foreach ( $customfield as $key => $value ) { global $bw_fields; $field = bw_array_get( $bw_fields, $key, null ); span( "value" ); bw_theme_field( $key, $value, $field ); epan( "value" ); } }View on GitHub View on Trac