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
248                     }
249                }
250
251                // For backward-compatibility, 'date' needs to resolve to 'date ID'.
252                if ( isset( $args['orderby'] ) && 'date' === $args['orderby'] ) {
253                     $args['orderby'] = 'date ID';
254                }
255
256                /** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
257                $args       = apply_filters( 'rest_revision_query', $args, $request );
258                $query_args = $this->prepare_items_query( $args, $request );
259
260                $revisions_query = new WP_Query();
261                $revisions       = $revisions_query->query( $query_args );
262                $offset          = isset( $query_args['offset'] ) ? (int) $query_args['offset'] : 0;
263                $page            = (int) $query_args['paged'];
264                $total_revisions = $revisions_query->found_posts;
265
266                if ( $total_revisions < 1 ) {