Description
table header for bw_plugProduce a table header like this: ` <table> <tbody> <tr> <th>Plugin name and description</th> <th>Plugin links</th> <th>Version, total downloads, last update, tested</th> </tr> `
Usage
bw_plug_table( $table );Parameters
- $table
- ( bool ) optional – true if a table is being displayed
Returns
voidSource
File name: oik-bob-bing-wide/shortcodes/oik-plug.phpLines:
1 to 11 of 11
function bw_plug_table( $table=false ) { if ( $table ) { stag( "table", "bw_plug" ); stag( "tbody" ); stag( "tr" ); th( "Plugin name and description", 'name' ); th( "Plugin links", 'links' ); th( "Version, total downloads, last update, tested", 'vtdlut' ); etag( "tr" ); } }View on GitHub
Invoked by
Calls
1 to 3 of 3
Call hooks
API Letters:
