wp_after_admin_bar_render
Fires after the admin bar is rendered.
Usage
add_action( 'wp_after_admin_bar_render', 'wp_kama_after_admin_bar_render_action' );
/**
* Function for `wp_after_admin_bar_render` action-hook.
*
* @return void
*/
function wp_kama_after_admin_bar_render_action(){
// action...
}Changelog
| Since 3.1.0 | Introduced. |
Where the hook is called
wp-includes/admin-bar.php 113
do_action( 'wp_after_admin_bar_render' );