Uses
Uses | Description |
---|---|
wp-includes/class-wp-tax-query.php: WP_Tax_Query::get_sql_clauses() | Generate SQL clauses to be appended to a main query. |
Generates SQL clauses to be appended to a main query.
(string) (Required) Database table where the object being filtered is stored (eg wp_users).
(string) (Required) ID column for the filtered object in $primary_table.
(array) Array containing JOIN and WHERE SQL clauses to append to the main query.
File: wp-includes/class-wp-tax-query.php
public function get_sql( $primary_table, $primary_id_column ) { $this->primary_table = $primary_table; $this->primary_id_column = $primary_id_column; return $this->get_sql_clauses(); }
Version | Description |
---|---|
3.1.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_tax_query/get_sql