Recent

wzkb_related_articles_argsfilter

Filters the arguments array before being sent to wzkb_related_articles().

Type: filter
Since: 2.1.0
Source: includes/frontend/templates/single-wz_knowledgebase.php line 82

Parameters

Type Name Description
array $args Arguments array.
int $id Post ID.

Usage

add_filter( 'wzkb_related_articles_args', function($args, $id) {
    // ...
    return $args;
} );