Changeset 37342 for trunk/src/wp-includes/class-wp-meta-query.php
- Timestamp:
- 05/02/2016 03:59:56 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-meta-query.php
r36735 r37342 13 13 * Used for generating SQL clauses that filter a primary query according to metadata keys and values. 14 14 * 15 * `WP_Meta_Query` is a helper that allows primary query classes, such as {@see WP_Query} and {@see WP_User_Query}, 15 * WP_Meta_Query is a helper that allows primary query classes, such as WP_Query and WP_User_Query, 16 * 16 17 * to filter their results by object metadata, by generating `JOIN` and `WHERE` subclauses to be attached 17 18 * to the primary SQL query string. … … 25 26 * Array of metadata queries. 26 27 * 27 * See {@see WP_Meta_Query::__construct()}for information on meta query arguments.28 * See WP_Meta_Query::__construct() for information on meta query arguments. 28 29 * 29 30 * @since 3.2.0 … … 361 362 * Generate SQL clauses to be appended to a main query. 362 363 * 363 * Called by the public {@see WP_Meta_Query::get_sql()}, this method364 * is abstractedout to maintain parity with the other Query classes.364 * Called by the public WP_Meta_Query::get_sql(), this method is abstracted 365 * out to maintain parity with the other Query classes. 365 366 * 366 367 * @since 4.1.0 … … 673 674 * (ie, it's under the scope of the same relation), and (b) the combination 674 675 * of operator and relation between the clauses allows for a shared table join. 675 * In the case of {@see WP_Meta_Query}, this only applies to 'IN' clauses that676 * areconnected by the relation 'OR'.676 * In the case of WP_Meta_Query, this only applies to 'IN' clauses that are 677 * connected by the relation 'OR'. 677 678 * 678 679 * @since 4.1.0
Note: See TracChangeset
for help on using the changeset viewer.