filter

infinite_scroll_query_args

Filter the array of main query arguments.

Parameters

$query_args
array

Array of Query arguments.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

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 the infinite_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' );