Skip to content

Instantly share code, notes, and snippets.

@benmay
Created May 31, 2012 10:23
Show Gist options
  • Save benmay/2842471 to your computer and use it in GitHub Desktop.
Save benmay/2842471 to your computer and use it in GitHub Desktop.
Modify num items on author archive
add_filter( 'pre_option_posts_per_page' , 'limit_posts_per_page');
function limit_posts_per_page()
{
global $wp_query;
if ( $wp_query->is_author=='1')
{
return 6;
}
else
{
$all_options = get_alloptions();
return $all_options["posts_per_page"];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment