WP_Tax_Query::sanitize_relation( string $relation )
Sanitize a ‘relation’ operator.
Description Description
Parameters Parameters
- $relation
-
(string) (Required) Raw relation key from the query argument.
Return Return
(string) Sanitized relation ('AND' or 'OR').
Source Source
File: wp-includes/class-wp-tax-query.php
public function sanitize_relation( $relation ) { if ( 'OR' === strtoupper( $relation ) ) { return 'OR'; } else { return 'AND'; } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.1.0 | Introduced. |