w3tc_deferscripts_can_process

w3tc_deferscripts_can_process

Hook Type: filter

See hook in core

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

apply_filters('w3tc_deferscripts_can_process') is found 1 times:

  • /UserExperience_DeferScripts_Extension.php line 90
    			'reason'  => null,
    		);
    
    		$can_process = $this->can_process( $can_process );
    		$can_process = apply_filters( 'w3tc_deferscripts_can_process', $can_process );
    
    		// set reject reason in comment.
    		if ( $can_process['enabled'] ) {
    			$reject_reason = '';
    		} else {
    			$reject_reason = empty( $can_process['reason'] ) ? ' (not specified)' : ' (' . $can_process['reason'] . ')';