edit_categories_per_page WordPress Filter Hook
The edit_categories_per_page hook allows you to change how many categories are displayed on the "Categories" page in the Wordpress admin. This can be useful if you want to increase or decrease the number of categories that are shown on this page.
apply_filters( 'edit_categories_per_page', int $tags_per_page ) #
Filters the number of terms displayed per page for the Categories list table.
Parameters
- $tags_per_page
(int)Number of categories to be displayed. Default 20.
Source
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |