How to create Alphabetic pagination with range?
If you have used that code, now you have a custom taxonomy called ‘glossary’, what you need to show the range is a custom query like new WP_Query( array( ‘tax_query’ => array( array( ‘taxonomy’ => ‘glossary’, ‘field’ => ‘slug’, ‘terms’ => range(‘a’, ‘e’) ) ) ) ); The problem is how to perform this query … Read more