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