You appear to be a bot. Output may be restricted
Description
Display the value of a 'field' in a span with a class of the field name
Usage
$string = bw_output( $field );
Parameters
- $field
- ( string ) required – the name of the option field to display
Returns
string the formatted fieldSource
File name: oik/includes/bobbcomp.phpLines:
1 to 7 of 7
function bw_output( $field ) { $fieldvalue = bw_get_option( $field ); span( $field ); e( $fieldvalue ); epan(); return( bw_ret() ); }View on GitHub View on Trac