Created
November 30, 2015 20:05
-
-
Save kraftbj/9ba24d27a3c5b9ec3018 to your computer and use it in GitHub Desktop.
Log an error at shutdown priority 11 to confirm that is firing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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