mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user