Recent

wzkb_section_tree_article_limit filter Pro 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/frontend/class-section-tree.php line 472

Parameters

TypeNameDescription
int$limitNumber of articles.
\WP_Term$sectionCurrent section term.
array$argsTree arguments.

Usage

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