Filters the action links displayed for each term in the terms list table.
Description
The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug. Possible hook names include: <ul> <li>category_row_actions</li> <li>post_tag_row_actions</li> </ul>
Parameters
$actionsstring[]
An array of action links to be displayed. Default 'Edit', 'Quick Edit', 'Delete', and 'View'.
556* @since 3.0.0557*558* @param string[]$actions An array of action links to be displayed.Default559*'Edit','Quick Edit','Delete',and'View'.560* @param WP_Term$tag Term object.561*/562$actions=apply_filters("{$taxonomy}_row_actions",$actions,$tag);563564return$this->row_actions($actions);565}566567/**568* @param WP_Term$tag Term object.
History
Introduced in 3.0.0. Unchanged from 6.7.7 through 7.1.0.