Action hook 'wpmuadminresult'

in WP Core File wp-admin/includes/dashboard.php at line 489

View Source

wpmuadminresult

Action Hook
Description
Fires in the Network Admin 'Right Now' dashboard widget just before the user and site search form fields.

Hook Information

File Location wp-admin/includes/dashboard.php View on GitHub
Hook Type Action
Line Number 489

Hook Parameters

This hook doesn't accept any parameters.

Usage Examples

Basic Usage
<?php
// Hook into wpmuadminresult
add_action('wpmuadminresult', 'my_custom_function');

function my_custom_function() {
    // Your custom code here
}

Source Code Context

wp-admin/includes/dashboard.php:489 - How this hook is used in WordPress core
<?php
 484  		 * Fires in the Network Admin 'Right Now' dashboard widget
 485  		 * just before the user and site search form fields.
 486  		 *
 487  		 * @since MU (3.0.0)
 488  		 */
 489  		do_action( 'wpmuadminresult' );
 490  	?>
 491  
 492  	<form action="<?php echo esc_url( network_admin_url( 'users.php' ) ); ?>" method="get">
 493  		<p>
 494  			<label class="screen-reader-text" for="search-users">

PHP Documentation

<?php
/**
		 * Fires in the Network Admin 'Right Now' dashboard widget
		 * just before the user and site search form fields.
		 *
		 * @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.