Recent

wzkb_section_tree_article_limitfilterPro only

wzkb_section_tree_article_limit

Filters the number of articles shown per section in the section tree.

Type: filter
Since: 3.1.0
Source: includes/pro/frontend/class-section-tree.php line 472

Parameters

Type Name Description
int $limit Number of articles.
\WP_Term $section Current section term.
array $args Tree arguments.

Usage

add_filter( 'wzkb_section_tree_article_limit', function($limit, $section, $args) {
    // ...
    return $limit;
} );