wpmueditblogaction
Action HookDescription
Fires at the end of the Edit Site form, before the submit button.Hook Information
File Location |
wp-admin/network/site-settings.php
View on GitHub
|
Hook Type | Action |
Line Number | 180 |
Hook Parameters
Type | Name | Description |
---|---|---|
int
|
$id
|
Site ID. |
Usage Examples
Basic Usage
<?php
// Hook into wpmueditblogaction
add_action('wpmueditblogaction', 'my_custom_function', 10, 1);
function my_custom_function($id) {
// Your custom code here
}
Source Code Context
wp-admin/network/site-settings.php:180
- How this hook is used in WordPress core
<?php
175 *
176 * @since 3.0.0
177 *
178 * @param int $id Site ID.
179 */
180 do_action( 'wpmueditblogaction', $id );
181 ?>
182 </table>
183 <?php submit_button(); ?>
184 </form>
185
PHP Documentation
<?php
/**
* Fires at the end of the Edit Site form, before the submit button.
*
* @since 3.0.0
*
* @param int $id Site ID.
*/
Quick Info
- Hook Type: Action
- Parameters: 1
- File: wp-admin/network/site-settings.php
Related Hooks
Related hooks will be displayed here in future updates.