Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_revision_query

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
272                     }
273                }
274
275                // For backward-compatibility, 'date' needs to resolve to 'date ID'.
276                if ( isset( $args['orderby'] ) && 'date' === $args['orderby'] ) {
277                     $args['orderby'] = 'date ID';
278                }
279
280                /** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
281                $args       = apply_filters( 'rest_revision_query', $args, $request );
282                $query_args = $this->prepare_items_query( $args, $request );
283
284                $revisions_query = new WP_Query();
285                $revisions       = $revisions_query->query( $query_args );
286                $offset          = isset( $query_args['offset'] ) ? (int) $query_args['offset'] : 0;
287                $page            = (int) $query_args['paged'];
288                $total_revisions = $revisions_query->found_posts;
289
290                if ( $total_revisions < 1 ) {