Home/Hooks/activity_box_end
ACTION

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'.

wp-admin/includes/dashboard.php
Line 431
0 Parameters
View Source

Usage

add_action( 'activity_box_end', 'your_callback_function' );

Action Callback:

function your_callback_function(  ) {
    // Your code here
    
}

⚡ Action Hook

Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.