I have tried this but it doens’t work
function custom_events_list_query($query) {
if (class_exists('Tribe__Events__Main')) {
if ($query->is_main_query() && is_post_type_archive('tribe_events') && tribe_is_list_view()) {
$query->set('posts_per_page', 4);
$query->set('ignore_sticky_posts', true);
$query->set('post_status', array('publish', 'private'));
}
}
return $query;
}
add_filter('pre_get_posts', 'custom_events_list_query');
-
This reply was modified 9 months, 1 week ago by davide90.