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/date.php

    r35796 r37342  
    33 * Class for generating SQL clauses that filter a primary query according to date.
    44 *
    5  * `WP_Date_Query` is a helper that allows primary query classes, such as {@see WP_Query},
    6  * to filter their results by date columns, by generating `WHERE` subclauses to be attached
    7  * to the primary SQL query string.
     5 * WP_Date_Query is a helper that allows primary query classes, such as WP_Query, to filter
     6 * their results by date columns, by generating `WHERE` subclauses to be attached to the
     7 * primary SQL query string.
    88 *
    99 * Attempting to filter by an invalid date value (eg month=13) will generate SQL that will
    1010 * return no results. In these cases, a _doing_it_wrong() error notice is also thrown.
    11  * See {@link WP_Date_Query::validate_date_values()}.
     11 * See WP_Date_Query::validate_date_values().
    1212 *
    1313 * @link https://codex.wordpress.org/Function_Reference/WP_Query Codex page.
     
    1919     * Array of date queries.
    2020     *
    21      * See {@see WP_Date_Query::__construct()} for information on date query arguments.
     21     * See WP_Date_Query::__construct() for information on date query arguments.
    2222     *
    2323     * @since 3.7.0
     
    569569     * Generate SQL clauses to be appended to a main query.
    570570     *
    571      * Called by the public {@see WP_Date_Query::get_sql()}, this method
    572      * is abstracted out to maintain parity with the other Query classes.
     571     * Called by the public WP_Date_Query::get_sql(), this method is abstracted
     572     * out to maintain parity with the other Query classes.
    573573     *
    574574     * @since 4.1.0
Note: See TracChangeset for help on using the changeset viewer.