manage_sites_extra_tablenav
Fires immediately following the closing "actions" div in the tablenav for the MS sites list table.
Usage
add_action( 'manage_sites_extra_tablenav', 'wp_kama_manage_sites_extra_tablenav_action' );
/**
* Function for `manage_sites_extra_tablenav` action-hook.
*
* @param string $which The location of the extra table nav markup: Either 'top' or 'bottom'.
*
* @return void
*/
function wp_kama_manage_sites_extra_tablenav_action( $which ){
// action...
}
- $which(string)
- The location of the extra table nav markup: Either 'top' or 'bottom'.
Changelog
| Since 5.3.0 | Introduced. |
Where the hook is called
manage_sites_extra_tablenav
wp-admin/includes/class-wp-ms-sites-list-table.php 358
do_action( 'manage_sites_extra_tablenav', $which );