Site logo

Archived topic

Pagenavi styles?

3 replies · Started by Anonymous on October 21, 2015

Viewing posts 1–4 of 4

Hello,

I have a question for the page navigation. Where I can replace the standard paging (1 2 … 75 Next →) with the easier pagenavi plugin?

Hi erni. After installing the WP-PageNavi plugin you would either create a plugin as Tom described in this post, or add this code to your child theme functions.php file:

add_action('generate_paging_navigation','generate_pagenavi_integration');
function generate_pagenavi_integration()
{
    wp_pagenavi();
}

Then you would add this css to your child theme style.css file to hide the default theme pagination:

.page-numbers {
      display: none;
}

Adding PHP Functions: https://generatepress.com/knowledgebase/adding-php-functions/
Adding CSS: https://generatepress.com/knowledgebase/adding-css/

Let me know if that helps.

works fine

Glad it's working :)

This archived topic is closed to new replies.