You appear to be a bot. Output may be restricted
Description
If querying a specific date, add the proper filters.
Usage
EDD_Payments_Query::date_filter_pre();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/payments/class-payments-query.php
Lines:
1 to 9 of 9
public function date_filter_pre() { if( ! ( $this->args['start_date'] || $this->args['end_date'] ) ) { return; } $this->setup_dates( $this->args['start_date'], $this->args['end_date'] ); add_filter( 'posts_where', array( $this, 'payments_where' ) ); }