Skip to content

Instantly share code, notes, and snippets.

@jsakas
Created November 12, 2019 21:04
Show Gist options
  • Save jsakas/f7faebc4756cc56a87c49a071310b149 to your computer and use it in GitHub Desktop.
Save jsakas/f7faebc4756cc56a87c49a071310b149 to your computer and use it in GitHub Desktop.
<?php
/**
* Template debug
*/
add_filter('template_include', function ($template) {
error_log('Template :: ' . $template);
return $template;
}, 99);
/**
* Logger helper
*/
function rlog($i) {
error_log(print_r($i, true));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment