You appear to be a bot. Output may be restricted
Description
Table header for bw_codesProduce the table header for the bw_code shortcode
Usage
bw_help_table( $table );
Parameters
- $table
- ( bool ) optional default: 1 – set to true when a table is required
Returns
voidSource
File name: oik/shortcodes/oik-codes.phpLines:
1 to 14 of 14
function bw_help_table( $table=true ) { if ( $table ) { stag( "table", "widefat" ); stag( "thead" ); stag( "tr" ); bw_th( __( "Help", "oik" ) ); bw_th( __( "Syntax", "oik" ) ); bw_th( __( "Expands in titles?", "oik" ) ); etag( "tr" ); etag( "thead" ); stag( "tbody" ); } }View on GitHub View on Trac