manage_users_extra_tablenav
Action HookDescription
Fires immediately following the closing "actions" div in the tablenav for the users list table.Hook Information
File Location |
wp-admin/includes/class-wp-users-list-table.php
View on GitHub
|
Hook Type | Action |
Line Number | 342 |
Hook Parameters
Type | Name | Description |
---|---|---|
string
|
$which
|
The location of the extra table nav markup: 'top' or 'bottom'. |
Usage Examples
Basic Usage
<?php
// Hook into manage_users_extra_tablenav
add_action('manage_users_extra_tablenav', 'my_custom_function', 10, 1);
function my_custom_function($which) {
// Your custom code here
}
Source Code Context
wp-admin/includes/class-wp-users-list-table.php:342
- How this hook is used in WordPress core
<?php
337 *
338 * @since 4.9.0
339 *
340 * @param string $which The location of the extra table nav markup: 'top' or 'bottom'.
341 */
342 do_action( 'manage_users_extra_tablenav', $which );
343 }
344
345 /**
346 * Captures the bulk action required, and return it.
347 *
PHP Documentation
<?php
/**
* Fires immediately following the closing "actions" div in the tablenav for the users
* list table.
*
* @since 4.9.0
*
* @param string $which The location of the extra table nav markup: 'top' or 'bottom'.
*/
Quick Info
- Hook Type: Action
- Parameters: 1
- File: wp-admin/includes/class-wp-users-list-table.php
Related Hooks
Related hooks will be displayed here in future updates.