Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created May 1, 2012 18:31
Show Gist options
  • Save claudiosanches/2570286 to your computer and use it in GitHub Desktop.
Save claudiosanches/2570286 to your computer and use it in GitHub Desktop.
Custom category posts per page
<?php
// Custom category posts per page
function cs_category_posts_per_page($query) {
if (is_category()) {
$query->query_vars['posts_per_page'] = 5;
return;
}
}
add_filter('pre_get_posts', 'cs_category_posts_per_page');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment