Code-Snippets-Functions/Execute a function on a child site/wpDiscuz/disable-post-cache-clearing.txt

3 lines
92 B
Text

add_filter("wpdiscuz_manage_post_cache_clearing", function ($clear) {
return false;
});