Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created February 15, 2015 12:34
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
/**
* Modifica argumentos de WP_Query
*/
add_filter( 'ep_args', 'custom_ep_args' );
function custom_ep_args( $args ) {
$args['posts_per_page'] = 10;
$args['order'] = 'ASC';
$args['orderby'] = 'author';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment