Adding Numeric Pagination in WordPress using Plugin (WP-PageNavi)
Now let’s take a look at how to add numeric pagination in your WordPress theme by using an existing plugin called WP-PageNavi. Before reading this article you can read our previous article: How to Add Numeric Pagination in Your WordPress Theme instead of Older Post.
You can either install it automatically from the WordPress admin panel or do it manually Download & Unzip the archive and put the wp-pagenavi folder into your plugins folder (/wp-content/plugins/). Activate the plugin from the Plugins menu.
Now you need to add template tag into your theme index.php, archive.php and any other archive template files.
<?php wp_pagenavi(); ?>
Once you have added the wp_pagenavi snippet, You’re done. Feel free to ask me any query regarding Numeric Pagination. I’ll try my best to give you a solution.