Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created September 8, 2016 11:53
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 mgibbs189/9396d0f77cd7647191c293bcf4a8832e to your computer and use it in GitHub Desktop.
Save mgibbs189/9396d0f77cd7647191c293bcf4a8832e to your computer and use it in GitHub Desktop.
FacetWP - per_page facet customization
<?php
add_filter( 'facetwp_per_page_options', function( $options ) {
return array( 5, 10, 25, 50, 100, 250 );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment