Changeset 47734
- Timestamp:
- 05/01/2020 04:43:46 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r47557 r47734 508 508 * 509 509 * @since 2.8.0 510 * @deprecated 3.0.0 Use {@see '{$taxonomy}_row_actions'} instead. 510 * @since 3.0.0 Deprecated in favor of {@see '{$taxonomy}_row_actions'} filter. 511 * @since 5.4.2 Restored (un-deprecated). 511 512 * 512 513 * @param string[] $actions An array of action links to be displayed. Default … … 514 515 * @param WP_Term $tag Term object. 515 516 */ 516 $actions = apply_filters _deprecated( 'tag_row_actions', array( $actions, $tag ), '3.0.0', '{$taxonomy}_row_actions');517 $actions = apply_filters( 'tag_row_actions', $actions, $tag ); 517 518 518 519 /**
Note: See TracChangeset
for help on using the changeset viewer.