mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
8 lines
196 B
Text
8 lines
196 B
Text
add_filter( 'autoptimize_filter_main_pagecachepurgeactions',
|
|
function( $clearcaches_array ) {
|
|
$clearcaches_array[] = 'nginx_cache_cleared';
|
|
return $clearcaches_array;
|
|
},
|
|
10,
|
|
1
|
|
);
|