• Resolved tucker2019

    (@tucker2019)


    Hi

    Is there an automatic setting so I don’t have to manually purge cache and minify when those files get big?

Viewing 1 replies (of 1 total)
  • @tucker2019

    Please use following snippet and add it to your active child themes functions.php file, it will automatically delete the minified files after 3 days

    
    add_filter( 'wp_optimize_minify_cache_expiry_time', function( $original_value ) {
    return time() - 86400 * 3;
    } );
Viewing 1 replies (of 1 total)

The topic ‘Purge cache and minify automatically’ is closed to new replies.