Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Last active December 18, 2020 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cre8tivediva/fc6a36b0eabdb39f60aacde4b4611f2a to your computer and use it in GitHub Desktop.
Save cre8tivediva/fc6a36b0eabdb39f60aacde4b4611f2a to your computer and use it in GitHub Desktop.
Add pagination to Genesis Author Archives
//* Add pagination to Genesis Author Archive
function author_posts_per_page( $query ) {
if (!is_admin() && is_author() )
$query->set( 'posts_per_page', 5 );
}
add_filter('parse_query', 'author_posts_per_page');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment