You appear to be a bot. Output may be restricted
Description
Return a list of jQuery scripts
Usage
bw_list_wp_scripts();
Parameters
Returns
voidSource
File name: oik/shortcodes/oik-jquery.phpLines:
1 to 19 of 19
function bw_list_wp_scripts() { global $wp_scripts; bw_trace2( $wp_scripts, "global scripts", null, BW_TRACE_DEBUG ); stag( "table" ); stag( "thead" ); stag( "tr" ); bw_th( __( "handle", "oik" ) ); bw_th( __( "version", "oik" ) ); bw_th( __( "dependencies", "oik" ) ); etag( "tr" ); etag( "thead" ); stag( "tbody" ); foreach ( $wp_scripts->registered as $key => $script ) { bw_list_wp_script( $key, $script ); } etag ("tbody" ); etag( "table" ); }View on GitHub View on Trac