tag_row_actions WordPress Action Hook
The tag_row_actions hook allows you to add extra actions to a tag in the WordPress admin. This is useful for adding custom bulk actions or for adding links to other areas of the admin.
apply_filters( 'tag_row_actions', string[] $actions , WP_Term $tag ) #
Filters the action links displayed for each term in the Tags list table.
Parameters
- $actions
(string[])An array of action links to be displayed. Default 'Edit', 'Quick Edit', 'Delete', and 'View'.
- $tag
(WP_Term)Term object.
Source
Changelog
Version | Description |
---|---|
5.4.2 | Restored (un-deprecated). |
3.0.0 | Deprecated in favor of '{$taxonomy_row_actions'} filter. |
2.8.0 | Introduced. |