WP_Term_Query::parse_order() WordPress Method
The parse_order() method is a utility method used to parse the 'order' parameter of the WP_Term_Query class. This method is used to set the order of the terms returned by the WP_Term_Query class. The 'order' parameter can be set to 'ASC' or 'DESC'.
WP_Term_Query::parse_order( string $order ) #
Parse an ‘order’ query variable and cast it to ASC or DESC as necessary.
Parameters
- $order
(string)(Required)The 'order' query variable.
Return
(string) The sanitized 'order' query variable.
Source
File: wp-includes/class-wp-term-query.php
protected function parse_order( $order ) { if ( ! is_string( $order ) || empty( $order ) ) { return 'DESC'; } if ( 'ASC' === strtoupper( $order ) ) { return 'ASC'; } else { return 'DESC'; } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.6.0 | Introduced. |