Created
October 11, 2016 04:27
-
-
Save muhfaris/a41be52618b6101208ded4361b4c4431 to your computer and use it in GitHub Desktop.
Jetpack error double post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment