wpsc_htaccess_mod_headers

wpsc_htaccess_mod_headers

Hook Type: filter

See hook in core

Displaying hooks found in version: wp-super-cache.2.0.0

apply_filters('wpsc_htaccess_mod_headers') is found 1 times:

  • /wp-cache.php line 3218
    3214
    3215
    3216
    3217
    3218
    3219
    3220
    3221
    3222
    3223
    3224
        $headers['Cache-Control'] = WPSC_CACHE_CONTROL_HEADER;
    }
     
    // Allow overriding headers with a filter.
    $headers = apply_filters( 'wpsc_htaccess_mod_headers', $headers );
     
    // Combine headers into a block of text.
    $headers_text = implode(
        "\n",
        array_map(
            function ( $key, $value ) {
wpsc_htaccess_mod_headers - WordPress Hooks

wpsc_htaccess_mod_headers

wpsc_htaccess_mod_headers

Hook Type: filter

See hook in core

Displaying hooks found in version: wp-super-cache.1.9.3

apply_filters('wpsc_htaccess_mod_headers') is found 1 times:

  • /wp-cache.php line 3096
    3092
    3093
    3094
    3095
    3096
    3097
    3098
    3099
    3100
    3101
    3102
        $headers['Cache-Control'] = WPSC_CACHE_CONTROL_HEADER;
    }
     
    // Allow overriding headers with a filter.
    $headers = apply_filters( 'wpsc_htaccess_mod_headers', $headers );
     
    // Combine headers into a block of text.
    $headers_text = join(
        "\n",
        array_map(
            function ( $key, $value ) {