wpmu_upgrade_page
Action HookDescription
Fires before the footer on the network upgrade screen.Hook Information
File Location |
wp-admin/network/upgrade.php
View on GitHub
|
Hook Type | Action |
Line Number | 152 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into wpmu_upgrade_page
add_action('wpmu_upgrade_page', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/network/upgrade.php:152
- How this hook is used in WordPress core
<?php
147 /**
148 * Fires before the footer on the network upgrade screen.
149 *
150 * @since MU (3.0.0)
151 */
152 do_action( 'wpmu_upgrade_page' );
153 break;
154 }
155 ?>
156 </div>
157
PHP Documentation
<?php
/**
* Fires before the footer on the network upgrade screen.
*
* @since MU (3.0.0)
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/network/upgrade.php
Related Hooks
Related hooks will be displayed here in future updates.