Skip to content

Instantly share code, notes, and snippets.

@anubisthejackle
Created January 8, 2021 20:14
Show Gist options
  • Save anubisthejackle/80b8f620eb71bce53efb262907b23dbd to your computer and use it in GitHub Desktop.
Save anubisthejackle/80b8f620eb71bce53efb262907b23dbd to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Test All Filter
*/
add_filter('all', function(){
static $calls;
if(!$calls){
$calls = 0;
}
$calls++;
file_put_contents(__DIR__ . '/all-log.txt', $calls);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment