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.


Top ↑

Source

File: wp-admin/includes/class-wp-terms-list-table.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.8.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.