Changeset 55732 for trunk/src/wp-includes/class-wp-date-query.php
- Timestamp:
- 05/08/2023 10:35:38 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-date-query.php
r54765 r55732 686 686 * 687 687 * @param array $query Date query arguments. 688 * @return string[]{688 * @return array { 689 689 * Array containing JOIN and WHERE SQL clauses to append to the main query. 690 690 * 691 * @type string $join SQL fragmentto append to the main JOIN clause.692 * @type string $where SQL fragmentto append to the main WHERE clause.691 * @type string[] $join Array of SQL fragments to append to the main JOIN clause. 692 * @type string[] $where Array of SQL fragments to append to the main WHERE clause. 693 693 * } 694 694 */ … … 706 706 * @param array $query Date query clause. 707 707 * @param array $parent_query Parent query of the current date query. 708 * @return string[]{708 * @return array { 709 709 * Array containing JOIN and WHERE SQL clauses to append to the main query. 710 710 * 711 * @type string $join SQL fragmentto append to the main JOIN clause.712 * @type string $where SQL fragmentto append to the main WHERE clause.711 * @type string[] $join Array of SQL fragments to append to the main JOIN clause. 712 * @type string[] $where Array of SQL fragments to append to the main WHERE clause. 713 713 * } 714 714 */
Note: See TracChangeset
for help on using the changeset viewer.