Recent

wzkb_related_articles_query_args filter

Filters the related articles arguments before it is passed to WP_Query.

Type: filter
Since: 2.1.0
Source: includes/frontend/class-related.php line 148

Parameters

TypeNameDescription
array$related_argsWP_Query arguments.
array$argsParameters passed to function and merged with defaults.

Usage

add_filter( 'wzkb_related_articles_query_args', function($related_args, $args) {
    // ...
    return $related_args;
} );