Changeset 53877 for trunk/src/wp-includes/meta.php
- Timestamp:
- 08/11/2022 02:01:35 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/meta.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/meta.php
r53827 r53877 1232 1232 * @param string $primary_id_column Primary ID column name. 1233 1233 * @param object $context Optional. The main query object 1234 * @return array Associative array of `JOIN` and `WHERE` SQL. 1234 * @return string[]|false { 1235 * Array containing JOIN and WHERE SQL clauses to append to the main query, 1236 * or false if no table exists for the requested meta type. 1237 * 1238 * @type string $join SQL fragment to append to the main JOIN clause. 1239 * @type string $where SQL fragment to append to the main WHERE clause. 1240 * } 1235 1241 */ 1236 1242 function get_meta_sql( $meta_query, $type, $primary_table, $primary_id_column, $context = null ) {
Note: See TracChangeset
for help on using the changeset viewer.