WP_Date_Query::get_sql_clauses

Advertisement

Summery Summery

Generate SQL clauses to be appended to a main query.

Syntax Syntax

WP_Date_Query::get_sql_clauses()

Description Description

Called by the public WP_Date_Query::get_sql(), this method is abstracted out to maintain parity with the other Query classes.

Return Return

(array) Array containing JOIN and WHERE SQL clauses to append to the main query.

  • 'join'
    (string) SQL fragment to append to the main JOIN clause.
  • 'where'
    (string) SQL fragment to append to the main WHERE clause.

Source Source

File: wp-includes/class-wp-date-query.php

	protected function get_sql_clauses() {
		$sql = $this->get_sql_for_query( $this->queries );

		if ( ! empty( $sql['where'] ) ) {
			$sql['where'] = ' AND ' . $sql['where'];
		}

		return $sql;
	}

Advertisement

Changelog Changelog

Changelog
Version Description
4.1.0 Introduced.

Advertisement

Leave a Reply