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'.
558* @since 3.0.0559*560* @param string[]$actions An array of action links to be displayed.Default561*'Edit','Quick Edit','Delete',and'View'.562* @param WP_Term$tag Term object.563*/564$actions=apply_filters("{$taxonomy}_row_actions",$actions,$tag);565566return$this->row_actions($actions);567}568569/**570* @param WP_Term$tag Term object.
History
Introduced in 3.0.0. Unchanged from 6.7.7 through 7.1.0.