Last active
December 18, 2020 01:51
-
-
Save cre8tivediva/fc6a36b0eabdb39f60aacde4b4611f2a to your computer and use it in GitHub Desktop.
Add pagination to Genesis Author Archives
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
//* 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