apply_filters( 'ms_user_row_actions', string[] $actions, WP_User $user )
- Since
- 3.2.0
Filters the action links displayed under each user in the Network Admin Users list table.
Compatibility
- WordPress
- since 3.2.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$actionsstring[]- An array of action links to be displayed. Default 'Edit', 'Delete'.
$userWP_User- WP_User object.
Where this hook fires · 1
wp-admin/includes/class-wp-ms-users-list-table.php:563WP_MS_Users_List_Table::handle_row_actions()
Source code
* * @since 3.2.0 * * @param string[] $actions An array of action links to be displayed. Default 'Edit', 'Delete'. * @param WP_User $user WP_User object. */ $actions = apply_filters( 'ms_user_row_actions', $actions, $user ); return $this->row_actions( $actions ); }}Changelog
Introduced in 3.2.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.