wpmu_options
Action HookDescription
Fires at the end of the Network Settings form, before the submit button.Hook Information
File Location |
wp-admin/network/settings.php
View on GitHub
|
Hook Type | Action |
Line Number | 541 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into wpmu_options
add_action('wpmu_options', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/network/settings.php:541
- How this hook is used in WordPress core
<?php
536 /**
537 * Fires at the end of the Network Settings form, before the submit button.
538 *
539 * @since MU (3.0.0)
540 */
541 do_action( 'wpmu_options' );
542 ?>
543 <?php submit_button(); ?>
544 </form>
545 </div>
546
PHP Documentation
<?php
/**
* Fires at the end of the Network Settings form, before the submit button.
*
* @since MU (3.0.0)
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/network/settings.php
Related Hooks
Related hooks will be displayed here in future updates.