wp_dashboard_setup
Fires after core widgets for the admin dashboard have been registered.
Usage
add_action( 'wp_dashboard_setup', 'wp_kama_dashboard_setup_action' );
/**
* Function for `wp_dashboard_setup` action-hook.
*
* @return void
*/
function wp_kama_dashboard_setup_action(){
// action...
}Changelog
| Since 2.5.0 | Introduced. |
Where the hook is called
wp_dashboard_setup
wp-admin/includes/dashboard.php 135
do_action( 'wp_dashboard_setup' );