Recent

wzkb_related_category_weight filter

Sort the related query by a simple relevance score using shared taxonomies and recency.

Type: filter
Since: 3.0.0
Source: includes/frontend/class-related.php line 353

Parameters

TypeNameDescription
\WP_Query$queryRelated posts query.
int[]$category_idsCategory term IDs from the origin post.
int[]$tag_idsTag term IDs from the origin post.
array$argsOriginal query arguments.

Usage

add_filter( 'wzkb_related_category_weight', function($query, $category_ids, $tag_ids, $args) {
    // ...
    return $query;
} );