Filter the array of main query arguments.
Parameters
- $query_args
array
Array of Query arguments.
Changelog
- Introduced in Jetpack 2.0.1
How to use this hook
Notes
Some themes and plugins add extra arguments to post queries, often to change the way the posts are sorted or loaded. You can use theinfinite_scroll_query_args
filter to add those extra arguments to Infinite Scroll as well. In the example below, we’ll add 2 custom ordering parameters, order
and orderby
:
/** * Sort all Infinite Scroll results alphabetically by post name * * @param array $args * @filter infinite_scroll_query_args * @return array */ function jetpack_infinite_scroll_query_args( $args ) { $args['order'] = 'ASC'; $args['orderby'] = 'name'; return $args; } add_filter( 'infinite_scroll_query_args', 'jetpack_infinite_scroll_query_args' );