This page redirects to an external site: https://developer.wordpress.org/reference/hooks/activity_box_end/
This action adds content to the end of At a Glance widget on the Dashboard. Useful for adding your own notices / information.
<?php add_action('activity_box_end', 'function_name'); ?>
where "function_name" is the name of the function to be called.
Example code reproduced from Akismet:
function akismet_stats() {
if ( !function_exists('did_action') || did_action( 'rightnow_end' ) ) // We already displayed this info in the "Right Now" section
return;
if ( !$count = get_option('akismet_spam_count') )
return;
$path = plugin_basename(__FILE__);
echo '<h3>' . _x( 'Spam', 'comments' ) . '</h3>';
global $submenu;
if ( isset( $submenu['edit-comments.php'] ) )
$link = 'edit-comments.php';
else
$link = 'edit.php';
echo '<p>'.sprintf( _n( '<a href="%1$s">Akismet</a> has protected your site from <a href="%2$s">%3$s spam comments</a>.', '<a href="%1$s">Akismet</a> has protected your site from <a href="%2$s">%3$s spam comments</a>.', $count ), 'http://akismet.com/?return=true', clean_url("$link?page=akismet-admin"), number_format_i18n($count) ).'</p>';
}
add_action('activity_box_end', 'akismet_stats');