mu_activity_box_end
Action HookDescription
Fires at the end of the 'Right Now' widget in the Network Admin dashboard.Hook Information
File Location |
wp-admin/includes/dashboard.php
View on GitHub
|
Hook Type | Action |
Line Number | 530 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into mu_activity_box_end
add_action('mu_activity_box_end', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/includes/dashboard.php:530
- How this hook is used in WordPress core
<?php
525 /**
526 * Fires at the end of the 'Right Now' widget in the Network Admin dashboard.
527 *
528 * @since MU (3.0.0)
529 */
530 do_action( 'mu_activity_box_end' );
531 }
532
533 /**
534 * Displays the Quick Draft widget.
535 *
PHP Documentation
<?php
/**
* Fires at the end of the 'Right Now' widget in the Network Admin dashboard.
*
* @since MU (3.0.0)
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/includes/dashboard.php
Related Hooks
Related hooks will be displayed here in future updates.