Docs: Correct alignment for some DocBlocks in WP_Query::get_posts()
.
See #50768. Built from https://develop.svn.wordpress.org/trunk@48816 git-svn-id: http://core.svn.wordpress.org/trunk@48578 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
26cf7ec46d
commit
7a8df073cd
@ -2558,7 +2558,7 @@ class WP_Query {
|
|||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @param string $where The WHERE clause of the query.
|
* @param string $where The WHERE clause of the query.
|
||||||
* @param WP_Query $this The WP_Query instance (passed by reference).
|
* @param WP_Query $this The WP_Query instance (passed by reference).
|
||||||
*/
|
*/
|
||||||
$where = apply_filters_ref_array( 'posts_where', array( $where, &$this ) );
|
$where = apply_filters_ref_array( 'posts_where', array( $where, &$this ) );
|
||||||
|
|
||||||
@ -2567,7 +2567,7 @@ class WP_Query {
|
|||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @param string $join The JOIN clause of the query.
|
* @param string $join The JOIN clause of the query.
|
||||||
* @param WP_Query $this The WP_Query instance (passed by reference).
|
* @param WP_Query $this The WP_Query instance (passed by reference).
|
||||||
*/
|
*/
|
||||||
$join = apply_filters_ref_array( 'posts_join', array( $join, &$this ) );
|
$join = apply_filters_ref_array( 'posts_join', array( $join, &$this ) );
|
||||||
@ -2609,7 +2609,7 @@ class WP_Query {
|
|||||||
* @since 2.2.0
|
* @since 2.2.0
|
||||||
*
|
*
|
||||||
* @param string $cjoin The JOIN clause of the query.
|
* @param string $cjoin The JOIN clause of the query.
|
||||||
* @param WP_Query $this The WP_Query instance (passed by reference).
|
* @param WP_Query $this The WP_Query instance (passed by reference).
|
||||||
*/
|
*/
|
||||||
$cjoin = apply_filters_ref_array( 'comment_feed_join', array( $cjoin, &$this ) );
|
$cjoin = apply_filters_ref_array( 'comment_feed_join', array( $cjoin, &$this ) );
|
||||||
|
|
||||||
@ -2693,7 +2693,7 @@ class WP_Query {
|
|||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @param string $where The WHERE clause of the query.
|
* @param string $where The WHERE clause of the query.
|
||||||
* @param WP_Query $this The WP_Query instance (passed by reference).
|
* @param WP_Query $this The WP_Query instance (passed by reference).
|
||||||
*/
|
*/
|
||||||
$where = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) );
|
$where = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) );
|
||||||
|
|
||||||
@ -2714,7 +2714,7 @@ class WP_Query {
|
|||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @param string $join The JOIN clause of the query.
|
* @param string $join The JOIN clause of the query.
|
||||||
* @param WP_Query $this The WP_Query instance (passed by reference).
|
* @param WP_Query $this The WP_Query instance (passed by reference).
|
||||||
*/
|
*/
|
||||||
$join = apply_filters_ref_array( 'posts_join_paged', array( $join, &$this ) );
|
$join = apply_filters_ref_array( 'posts_join_paged', array( $join, &$this ) );
|
||||||
@ -2805,7 +2805,7 @@ class WP_Query {
|
|||||||
* @since 2.5.0
|
* @since 2.5.0
|
||||||
*
|
*
|
||||||
* @param string $where The WHERE clause of the query.
|
* @param string $where The WHERE clause of the query.
|
||||||
* @param WP_Query $this The WP_Query instance (passed by reference).
|
* @param WP_Query $this The WP_Query instance (passed by reference).
|
||||||
*/
|
*/
|
||||||
$where = apply_filters_ref_array( 'posts_where_request', array( $where, &$this ) );
|
$where = apply_filters_ref_array( 'posts_where_request', array( $where, &$this ) );
|
||||||
|
|
||||||
@ -2828,7 +2828,7 @@ class WP_Query {
|
|||||||
*
|
*
|
||||||
* @since 2.5.0
|
* @since 2.5.0
|
||||||
*
|
*
|
||||||
* @param string $join The JOIN clause of the query.
|
* @param string $join The JOIN clause of the query.
|
||||||
* @param WP_Query $this The WP_Query instance (passed by reference).
|
* @param WP_Query $this The WP_Query instance (passed by reference).
|
||||||
*/
|
*/
|
||||||
$join = apply_filters_ref_array( 'posts_join_request', array( $join, &$this ) );
|
$join = apply_filters_ref_array( 'posts_join_request', array( $join, &$this ) );
|
||||||
@ -3185,7 +3185,7 @@ class WP_Query {
|
|||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @param WP_Post[] $posts Array of post objects.
|
* @param WP_Post[] $posts Array of post objects.
|
||||||
* @param WP_Query $this The WP_Query instance (passed by reference).
|
* @param WP_Query $this The WP_Query instance (passed by reference).
|
||||||
*/
|
*/
|
||||||
$this->posts = apply_filters_ref_array( 'the_posts', array( $this->posts, &$this ) );
|
$this->posts = apply_filters_ref_array( 'the_posts', array( $this->posts, &$this ) );
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.6-alpha-48814';
|
$wp_version = '5.6-alpha-48816';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user