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.


git-svn-id: https://develop.svn.wordpress.org/trunk@37342 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes
2016-05-02 03:59:56 +00:00
parent 97dc4022c8
commit c7bed4f8c6
38 changed files with 162 additions and 169 deletions

View File

@@ -2,13 +2,13 @@
/**
* Class for generating SQL clauses that filter a primary query according to date.
*
* `WP_Date_Query` is a helper that allows primary query classes, such as {@see WP_Query},
* to filter their results by date columns, by generating `WHERE` subclauses to be attached
* to the primary SQL query string.
* WP_Date_Query is a helper that allows primary query classes, such as WP_Query, to filter
* their results by date columns, by generating `WHERE` subclauses to be attached to the
* primary SQL query string.
*
* Attempting to filter by an invalid date value (eg month=13) will generate SQL that will
* return no results. In these cases, a _doing_it_wrong() error notice is also thrown.
* See {@link WP_Date_Query::validate_date_values()}.
* See WP_Date_Query::validate_date_values().
*
* @link https://codex.wordpress.org/Function_Reference/WP_Query Codex page.
*
@@ -18,7 +18,7 @@ class WP_Date_Query {
/**
* Array of date queries.
*
* See {@see WP_Date_Query::__construct()} for information on date query arguments.
* See WP_Date_Query::__construct() for information on date query arguments.
*
* @since 3.7.0
* @access public
@@ -568,8 +568,8 @@ class WP_Date_Query {
/**
* Generate SQL clauses to be appended to a main query.
*
* Called by the public {@see WP_Date_Query::get_sql()}, this method
* is abstracted out to maintain parity with the other Query classes.
* Called by the public WP_Date_Query::get_sql(), this method is abstracted
* out to maintain parity with the other Query classes.
*
* @since 4.1.0
* @access protected