rightnow_end action-hookWP 2.5.0

Fires at the end of the 'At a Glance' dashboard widget.

Prior to 3.8.0, the widget was named 'Right Now'.

Usage

add_action( 'rightnow_end', 'wp_kama_rightnow_end_action' );

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

	// action...
}

Changelog

Since 2.5.0 Introduced.

Where the hook is called

wp_dashboard_right_now()
rightnow_end
wp-admin/includes/dashboard.php 422
do_action( 'rightnow_end' );

Where the hook is used in WordPress

Usage not found.