w3tc_deferscripts_can_process

w3tc_deferscripts_can_process

Hook Type: filter

See hook in core

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

apply_filters('w3tc_deferscripts_can_process') is found 1 times:

  • /UserExperience_DeferScripts_Extension.php line 90
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
        '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'] . ')';