shutdown action-hook . WP 1.2.0
Fires just before PHP shuts down execution.
Usage
add_action( 'shutdown', 'action_function_name_2256' ); function action_function_name_2256(){ // action... }
Changelog
Since 1.2.0 | Introduced. |
Where the hook is called
shutdown
wp-includes/load.php 1052
do_action( 'shutdown' );
Where in WP core the hook is used WordPress
wp-includes/load.php 362
add_action( 'shutdown', 'wp_ob_end_flush_all', 1 );