You appear to be a bot. Output may be restricted
Description
Saves the current state of dependencies for styles
Usage
dependencies_cache::save_styles();
Parameters
Returns
voidSource
File name: oik/libs/class-dependencies-cache.phpLines:
1 to 12 of 12
function save_styles() { global $wp_styles; $init = wp_styles(); $this->bw_styles = clone $wp_styles; $count_wp = count( $wp_styles->registered ); $count_bw = count( $this->bw_styles->registered ); bw_trace2( $count_wp, "count_wp and bw: $count_bw" ); bw_trace2( $this->bw_styles, "bw_styles", false, BW_TRACE_VERBOSE ); }View on GitHub View on Trac