mu_rightnow_end
Fires at the end of the 'Right Now' widget in the Network Admin dashboard.
Description
do_action( 'mu_rightnow_end' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'mu_rightnow_end' );
- The following example is for adding a hook callback.
- // define the mu_rightnow_end callback
- function action_mu_rightnow_end( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'mu_rightnow_end', 'action_mu_rightnow_end', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'mu_rightnow_end', 'action_mu_rightnow_end', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/includes/dashboard.php
- do_action( 'mu_rightnow_end' );