File "Query_Helper.php"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/the-events-calendar/src/Tribe/Featured_Events/Query_Helper.php
File size: 505 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @internal
*/
class Tribe__Events__Featured_Events__Query_Helper {
public function hook() {
add_action( 'tribe_events_pre_get_posts', [ $this, 'pre_get_posts' ] );
}
public function pre_get_posts( $query ) {
if ( ! $query->get( 'featured' ) ) {
return;
}
$meta_query = (array) $query->get( 'meta_query' );
$meta_query[] = [
'key' => Tribe__Events__Featured_Events::FEATURED_EVENT_KEY,
'compare' => 'EXISTS',
];
$query->set( 'meta_query', $meta_query );
}
}