mu_rightnow_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 | 523 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into mu_rightnow_end
add_action('mu_rightnow_end', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/includes/dashboard.php:523
- How this hook is used in WordPress core
<?php
518 /**
519 * Fires at the end of the 'Right Now' widget in the Network Admin dashboard.
520 *
521 * @since MU (3.0.0)
522 */
523 do_action( 'mu_rightnow_end' );
524
525 /**
526 * Fires at the end of the 'Right Now' widget in the Network Admin dashboard.
527 *
528 * @since MU (3.0.0)
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.