Skip to content

Instantly share code, notes, and snippets.

@alisonmonteiro
Created June 23, 2016 17:46
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 alisonmonteiro/c23d9e9987e15adda1d661c087a21cb4 to your computer and use it in GitHub Desktop.
Save alisonmonteiro/c23d9e9987e15adda1d661c087a21cb4 to your computer and use it in GitHub Desktop.
Custom posts limit
<?php
add_action('pre_get_posts', function() {
if (is_category('my-category')
$query->set('posts_per_page', 4);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment