Forums Forums Search & Filter Pro Numeric Pagination with results.php

Viewing 4 posts - 1 through 4 (of 4 total)
  • Anonymous
    #89029
    This reply has been marked as private.
    Anonymous
    #89032

    Alternatively, is there a method with this plugin for displaying the pagination numerically? I am also open to just theming it if using my theme’s pagination function proves too crufty.

    Anonymous
    #89040

    I ended up resolving this on my own using wp-pagenavi plugin and some minor js hacks! This can be closed!

    The code (for anyone interested):

    <?php
    			/* example code for using the wp_pagenavi plugin */
    			if (function_exists('wp_pagenavi'))
    			{
    				echo "<br />";
    				wp_pagenavi( array( 'query' => $query, 'wrapper_class' => 'pagination pge-search', 'wrapper_tag' => 'ul' ) );
    			}
    		?>
    Trevor
    #89058

    The sun is just rising here (not that I can see it behind the usual clouds in the UK), and I see you have resolved this yourself whilst our support was closed. Thanks for posting your solution 🙂

Viewing 4 posts - 1 through 4 (of 4 total)