You appear to be a bot. Output may be restricted
Description
Theme a field of type 'numeric'
Usage
bw_theme_field_numeric( $key, $value );
Parameters
- $key
- ( string ) required – the field name
- $value
- ( string/array ) required – the field value – expected to be an array with key 0
Returns
voidSource
File name: oik-fields/includes/oik-fields.incLines:
1 to 9 of 9
function bw_theme_field_numeric( $key, $value ) { //bw_backtrace(); //bw_trace2( $value, "numeric field $key" ); if ( empty( $value ) ) { e( "" ); } else { e( bw_array_get( $value, 0, $value ) ); } }View on GitHub