wpsc_htaccess_mod_expires

wpsc_htaccess_mod_expires

Hook Type: filter

See hook in core

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

apply_filters('wpsc_htaccess_mod_expires') is found 1 times:

  • /wp-cache.php line 3245
    3241
    3242
    3243
    3244
    3245
    3246
    3247
    3248
    3249
    3250
    3251
        'ExpiresByType text/html A3',
    );
     
    // Allow overriding mod_expires rules with a filter.
    $expires_rules = apply_filters( 'wpsc_htaccess_mod_expires', $expires_rules );
     
    $gziprules .= "<IfModule mod_expires.c>\n";
    $gziprules .= implode(
        "\n",
        array_map(
            function ( $line ) {