edit_tags_per_page WordPress Filter Hook
The edit_tags_per_page hook allows you to modify the number of tags displayed on the Edit Tags page in the WordPress admin. By default, this page displays 30 tags at a time. However, if you need to manage a large number of tags, you can use this hook to increase the number of tags displayed.
apply_filters( 'edit_tags_per_page', int $tags_per_page ) #
Filters the number of terms displayed per page for the Tags list table.
Parameters
- $tags_per_page
(int)Number of tags to be displayed. Default 20.
Source
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |