You appear to be a bot. Output may be restricted
Description
Display a table header
Usage
bw_table_header( $title_arr );
Parameters
- $title_arr
- ( array ) required – array of title header fields
Returns
voidSource
File name: oik/shortcodes/oik-table.phpLines:
1 to 7 of 7
function bw_table_header( $title_arr ) { stag( "table", "bw_table" ); stag( "thead" ); bw_tablerow( $title_arr, "tr", "th" ); etag( "thead" ); stag( "tbody" ); }View on GitHub View on Trac