Make WordPress Core

Changeset 34402


Ignore:
Timestamp:
09/22/2015 01:15:45 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Add a file header to wp-includes/class-wp-tax-query.php, introduced in [33760].

Also clarifies the class DocBlock summary and description for WP_Tax_Query.

See #33413. See #33701.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-tax-query.php

    r33760 r34402  
    11<?php
    22/**
    3  * Class for generating SQL clauses that filter a primary query according to object taxonomy terms.
     3 * Taxonomy API: WP_Tax_Query class
    44 *
    5  * `WP_Tax_Query` is a helper that allows primary query classes, such as WP_Query, to filter
    6  * their results by object metadata, by generating `JOIN` and `WHERE` subclauses to be attached
    7  * to the primary SQL query string.
     5 * @package WordPress
     6 * @subpackage Taxonomy
     7 * @since 4.4.0
     8 */
     9
     10/**
     11 * Core class used to implement taxonomy queries for the Taxonomy API.
     12 *
     13 * Used for generating SQL clauses that filter a primary query according to object
     14 * taxonomy terms.
     15 *
     16 * WP_Tax_Query is a helper that allows primary query classes, such as WP_Query, to filter
     17 * their results by object metadata, by generating `JOIN` and `WHERE` subclauses to be
     18 * attached to the primary SQL query string.
    819 *
    920 * @since 3.1.0
    10  * @package WordPress
    11  * @subpackage Taxonomy
    1221 */
    1322class WP_Tax_Query {
Note: See TracChangeset for help on using the changeset viewer.