You appear to be a bot. Output may be restricted
Description
Display a messageThe message display is similar to the message display for settings errors
Usage
$bool = bw_display_message( $bw_message );
Parameters
- $bw_message
- ( array ) required – a message field
Returns
bool trueSource
File name: oik-fields/shortcodes/oik-new.phpLines:
1 to 9 of 9
function bw_display_message( $bw_message ) { $classes = $bw_message['field']; $classes .= " "; $classes .= $bw_message['type']; sdiv( $classes, $bw_message['code'] ); p( $bw_message['text'] ); ediv(); return( true ); }View on GitHub