You appear to be a bot. Output may be restricted
Description
Theme a field of type 'sctext'
Theme a field which may contain shortcodes e.g. _mbo_class – which may contain the [mbo] shortcode to book a class
Usage
bw_theme_field_sctext( $key, $value );
Parameters
- $key
- ( string ) required – the field name
- $value
- ( array ) required – the field value at index 0
Returns
void
Source
File name: oik-fields/includes/oik-fields.inc
Lines:
1 to 7 of 7
function bw_theme_field_sctext( $key, $value ) { if ( !empty( $value ) ) { $text = bw_array_get( $value, 0, $value ); $text = bw_do_shortcode( $text ); e( $text ); } }