Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created November 30, 2015 20:05
Show Gist options
  • Save kraftbj/9ba24d27a3c5b9ec3018 to your computer and use it in GitHub Desktop.
Save kraftbj/9ba24d27a3c5b9ec3018 to your computer and use it in GitHub Desktop.
Log an error at shutdown priority 11 to confirm that is firing.
<?php
add_action( 'transition_post_status', 'bk_shutdown', 11);
function bk_shutdown() {
add_action('shutdown', 'bk_let_the_record_show', 11);
}
function bk_let_the_record_show(){
error_log( 'Shutdown at 11');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment