wpDiscuz 7 API Documentation

⌘K
  1. Home
  2. Docs
  3. wpDiscuz 7 API Documentat...
  4. Filters
  5. wpdiscuz_content_per_page

wpdiscuz_content_per_page

This filter can be used for changing the number of items displayed in the tabs of the “My content and settings” window.

Changelog

since 7.0.0 version

Parameters

$perPage (type: int) - the number of the items displayed in the "My content and settings" tabs

Usage

add_filter("wpdiscuz_content_per_page", function ($perPage) {
    return 5;
});