You appear to be a bot. Output may be restricted
Description
Create a table row for a jQuery script
Usage
bw_list_wp_script( $key, $script );
Parameters
- $key
- ( mixed ) required –
- $script
- ( mixed ) required –
Returns
voidSource
File name: oik/shortcodes/oik-jquery.phpLines:
1 to 15 of 15
function bw_list_wp_script( $key, $script ) { stag( "tr" ); if ( $script->handle <> $key ) { bw_td( $key ); // gobang(); } else { $unmin = str_replace( ".min", "", $script->src ); //$unmin = $script->src; $link = retlink( null, $unmin, $script->handle ); bw_td( $link ); } bw_td( $script->ver ); bw_td( implode( ",", $script->deps ) ); etag( "tr" ); }View on GitHub View on Trac