wp_user_dashboard_setup action-hookWP 3.1.0

Fires after core widgets for the User Admin dashboard have been registered.

Usage

add_action( 'wp_user_dashboard_setup', 'wp_kama_user_dashboard_setup_action' );

/**
 * Function for `wp_user_dashboard_setup` action-hook.
 * 
 * @return void
 */
function wp_kama_user_dashboard_setup_action(){

	// action...
}

Changelog

Since 3.1.0 Introduced.

Where the hook is called

wp_dashboard_setup()
wp_user_dashboard_setup
wp-admin/includes/dashboard.php 118
do_action( 'wp_user_dashboard_setup' );

Where the hook is used in WordPress

Usage not found.