network_site_users_after_list_table
Action HookDescription
Fires after the list table on the Users screen in the Multisite Network Admin.Hook Information
File Location |
wp-admin/network/site-users.php
View on GitHub
|
Hook Type | Action |
Line Number | 311 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into network_site_users_after_list_table
add_action('network_site_users_after_list_table', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/network/site-users.php:311
- How this hook is used in WordPress core
<?php
306 /**
307 * Fires after the list table on the Users screen in the Multisite Network Admin.
308 *
309 * @since 3.1.0
310 */
311 do_action( 'network_site_users_after_list_table' );
312
313 /** This filter is documented in wp-admin/network/site-users.php */
314 if ( current_user_can( 'promote_users' ) && apply_filters( 'show_network_site_users_add_existing_form', true ) ) :
315 ?>
316 <h2 id="add-existing-user"><?php _e( 'Add Existing User' ); ?></h2>
PHP Documentation
<?php
/**
* Fires after the list table on the Users screen in the Multisite Network Admin.
*
* @since 3.1.0
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/network/site-users.php
Related Hooks
Related hooks will be displayed here in future updates.