Make WordPress Core


Ignore:
Timestamp:
05/02/2016 03:59:56 AM (7 years ago)
Author:
DrewAPicture
Message:

Docs: Remove inline @see tags from function, class, and method references in inline docs.

Known functions, classes, and methods are now auto-linked in Code Reference pages following #meta1483.

Note: Hook references are still linked via inline @see tags due to the unlikelihood of reliably matching for known hooks based on a RegEx pattern.

See #32246.

File:
1 edited

Legend:

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

    r36735 r37342  
    1313 * Used for generating SQL clauses that filter a primary query according to metadata keys and values.
    1414 *
    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 *
    1617 * to filter their results by object metadata, by generating `JOIN` and `WHERE` subclauses to be attached
    1718 * to the primary SQL query string.
     
    2526     * Array of metadata queries.
    2627     *
    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.
    2829     *
    2930     * @since 3.2.0
     
    361362     * Generate SQL clauses to be appended to a main query.
    362363     *
    363      * Called by the public {@see WP_Meta_Query::get_sql()}, this method
    364      * is abstracted out 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.
    365366     *
    366367     * @since 4.1.0
     
    673674     * (ie, it's under the scope of the same relation), and (b) the combination
    674675     * 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 that
    676      * are connected 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'.
    677678     *
    678679     * @since 4.1.0
Note: See TracChangeset for help on using the changeset viewer.