Recent

crp_query_pro_posts_join filter Pro only

crp_query_pro_posts_join

Modify the posts_join clause for taxonomy weightage.

Type: filter
Since: 4.0.0
Source: includes/class-query-modifier.php line 867

Parameters

TypeNameDescription
string$joinThe JOIN clause of the query.
\WP_Query$queryThe WP_Query instance.
CRP_Core_Query$instanceThe CRP_Core_Query instance.

Usage

add_filter( 'crp_query_pro_posts_join', function($join, $query, $instance) {
    // ...
    return $join;
} );