Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 5, 2019 21: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 billerickson/bd4281fedf86604ead8bc9e88ef00f51 to your computer and use it in GitHub Desktop.
Save billerickson/bd4281fedf86604ead8bc9e88ef00f51 to your computer and use it in GitHub Desktop.
<?php
/**
* FacetWP, result count
*
*/
add_filter( 'facetwp_result_count', function( $output, $params ) {
$output = 'Showing ' . $params['lower'] . '-' . $params['upper'] . ' of ' . $params['total'] . ' results';
return $output;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment