Plugin Updates
This commit is contained in:
@@ -241,7 +241,7 @@ class WP_Term_Query {
|
||||
*
|
||||
* @since 4.6.0
|
||||
*
|
||||
* @param string|array $query WP_Term_Query arguments. See WP_Term_Query::__construct()
|
||||
* @param string|array $query WP_Term_Query arguments. See WP_Term_Query::__construct() for accepted arguments.
|
||||
*/
|
||||
public function parse_query( $query = '' ) {
|
||||
if ( empty( $query ) ) {
|
||||
@@ -752,13 +752,13 @@ class WP_Term_Query {
|
||||
$this->sql_clauses['orderby'] = $orderby ? "$orderby $order" : '';
|
||||
$this->sql_clauses['limits'] = $limits;
|
||||
|
||||
$this->request = "
|
||||
{$this->sql_clauses['select']}
|
||||
{$this->sql_clauses['from']}
|
||||
{$where}
|
||||
{$this->sql_clauses['orderby']}
|
||||
{$this->sql_clauses['limits']}
|
||||
";
|
||||
// Beginning of the string is on a new line to prevent leading whitespace. See https://core.trac.wordpress.org/ticket/56841.
|
||||
$this->request =
|
||||
"{$this->sql_clauses['select']}
|
||||
{$this->sql_clauses['from']}
|
||||
{$where}
|
||||
{$this->sql_clauses['orderby']}
|
||||
{$this->sql_clauses['limits']}";
|
||||
|
||||
$this->terms = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user