We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$args['meta_query'][] = $this->getEndDateQuery($options['clarkson_event_skip_date']);
Needs a check on it.
$options['clarkson_event_skip_date'] = ( isset( $options['clarkson_event_skip_date'] ) ) ? $options['clarkson_event_skip_date'] : true;
The text was updated successfully, but these errors were encountered:
I think it should default to false, as the default call should not retrieve events in the past.
So maybe:
$options['clarkson_event_skip_date'] = ( isset( $options['clarkson_event_skip_date'] ) && $options['clarkson_event_skip_date'] );
?
Sorry, something went wrong.
I see the clarkson_event_skip_date is currently implemented exactly opposite of skipping the date, which feels strange to me.
clarkson_event_skip_date
No branches or pull requests
$args['meta_query'][] = $this->getEndDateQuery($options['clarkson_event_skip_date']);
Needs a check on it.
$options['clarkson_event_skip_date'] = ( isset( $options['clarkson_event_skip_date'] ) ) ? $options['clarkson_event_skip_date'] : true;
The text was updated successfully, but these errors were encountered: