- Timestamp:
- 11/09/2019 12:57:27 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r45932 r46684 98 98 * @param int $tags_per_page Number of tags to be displayed. Default 20. 99 99 */ 100 $tags_per_page = apply_filters ( 'tagsperpage', $tags_per_page);100 $tags_per_page = apply_filters_deprecated( 'tagsperpage', array( $tags_per_page ), '2.8.0', 'edit_tags_per_page' ); 101 101 } elseif ( 'category' === $this->screen->taxonomy ) { 102 102 /** … … 509 509 * @param WP_Term $tag Term object. 510 510 */ 511 $actions = apply_filters ( 'tag_row_actions', $actions, $tag);511 $actions = apply_filters_deprecated( 'tag_row_actions', array( $actions, $tag ), '3.0.0', '{$taxonomy}_row_actions' ); 512 512 513 513 /**
Note: See TracChangeset
for help on using the changeset viewer.