w3tc_flush_browsercache

w3tc_flush_browsercache

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: w3-total-cache.2.7.0

do_action('w3tc_flush_browsercache') is found 1 times:

  • /CacheFlush_Locally.php line 94
    	function browsercache_flush( $extras = array() ) {
    		if ( isset( $extras['only'] ) && $extras['only'] != 'browsercache' )
    			return;
    
    		do_action( 'w3tc_flush_browsercache' );
    		update_option( 'w3tc_browsercache_flush_timestamp',
    			rand( 10000, 99999 ) . '' );
    		do_action( 'w3tc_flush_after_browsercache' );
    	}
    
    	/**