activity_box_end
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( 'activity_box_end', 'wp_kama_activity_box_end_action' );
/**
* Function for `activity_box_end` action-hook.
*
* @return void
*/
function wp_kama_activity_box_end_action(){
// action...
}Changelog
| Since 2.0.0 | Introduced. |
Where the hook is called
wp-admin/includes/dashboard.php 431
do_action( 'activity_box_end' );
Where the hook is used in WordPress
wp-admin/includes/admin-filters.php 14
add_action( 'activity_box_end', 'wp_dashboard_quota' );