WordPress maintenance or security needs? Reach out!
TLDWP

Plugin: wp-pagenavi (Used by 76,723 domains)

WP-PageNavi

πŸ‘€ Lester Chan πŸ”— Plugin Homepage

Want to replace the old ← Older posts | Newer posts β†’ links with some page links?

This plugin provides the wp_pagenavi() template tag which generates fancy pagination links.

Usage

In your theme, you need to find calls to next_posts_link() and previous_posts_link() and replace them.

In the Twentyten theme, it looks like this:



You would replace those two lines with this:


For multipart pages, you would look for code like this:


and replace it with this:

 'multipart' ) ); ?>

Go to WP-Admin -> Settings -> PageNavi for configuration.

Changing the CSS

If you need to configure the CSS style of WP-PageNavi, you can copy the pagenavi-css.css file from the plugin directory to your theme’s directory and make your modifications there. This way, you won’t lose your changes when you update the plugin.

Alternatively, you can uncheck the β€œUse pagenavi.css?” option from the settings page and add the styles to your theme’s style.css file directly.

Changing Class Names

There are filters that can be used to change the default class names that are assigned to page navigation elements.

Filters

  • wp_pagenavi_class_pages
  • wp_pagenavi_class_first
  • wp_pagenavi_class_previouspostslink
  • wp_pagenavi_class_extend
  • wp_pagenavi_class_smaller
  • wp_pagenavi_class_page
  • wp_pagenavi_class_current
  • wp_pagenavi_class_larger
  • wp_pagenavi_class_nextpostslink
  • wp_pagenavi_class_last

Filter Usage

// Simple Usage - 1 callback per filter
add_filter('wp_pagenavi_class_previouspostslink', 'theme_pagination_previouspostslink_class');
add_filter('wp_pagenavi_class_nextpostslink', 'theme_pagination_nextpostslink_class');
add_filter('wp_pagenavi_class_page', 'theme_pagination_page_class');

function theme_pagination_previouspostslink_class($class_name) {
  return 'pagination__control-link pagination__control-link--previous';
}

function theme_pagination_nextpostslink_class($class_name) {
  return 'pagination__control-link pagination__control-link--next';
}

function theme_pagination_page_class($class_name) {
  return 'pagination__current-page';
}


// More Concise Usage - 1 callback for all filters
add_filter('wp_pagenavi_class_previouspostslink', 'theme_pagination_class');
add_filter('wp_pagenavi_class_nextpostslink', 'theme_pagination_class');
add_filter('wp_pagenavi_class_page', 'theme_pagination_class');

function theme_pagination_class($class_name) {
  switch($class_name) {
    case 'previouspostslink':
      $class_name = 'pagination__control-link pagination__control-link--previous';
      break;
    case 'nextpostslink':
      $class_name = 'pagination__control-link pagination__control-link--next';
      break;
    case 'page':
      $class_name = 'pagination__current'
      break;
  }
  return $class_name;
}

Development

Credits

Donations

I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.

DomainExposuresHeadersLast Checked
s*o*t*c*i*a.jp F Aug 31, 2026
j*r*e*y*.com F Aug 31, 2026
j*r*e*s*s*i*i*a*.com F Aug 31, 2026
j*r*e*s*s.com F Aug 31, 2026
b*h*s*v*n*s.com C Aug 31, 2026
c*y*t*c*i*a*e*c*o*d.com (WP 7.1) D Aug 31, 2026
y*k*s*p*r*f*l*o.com (WP 5.6.19) F Aug 31, 2026
t*e*o*t*w*s*m*m*a.com (WP 4.8) F Aug 31, 2026
m*r*a*e.com (WP 5.9.16) F Aug 31, 2026
f*c*l*m*.c*m.br F Aug 31, 2026
r*i*u*o*s*.com (WP 7.1) F Aug 31, 2026
a*o*b.com (WP 7.1) F Aug 31, 2026
j*r*e*a*a*c*n.com (WP 7.1) F Aug 31, 2026
y*k*u*i*h*m*n*a*g*-*u*i.com F Aug 31, 2026
y*k*u*i*c*i*i*.com F Aug 31, 2026
t*i*s*4*l*v*r*.de (WP 4.8.1) F Aug 31, 2026
t*p*c*e*o*c*m.com A Aug 31, 2026
t*p*c*e*o*a*s.com A Aug 31, 2026
t*p*c*e*o*a*p*i*a*t*r*c*i*g*y*t*m.com A Aug 31, 2026
t*p*c*e*o*a*p*i*a*t*r*c*e*.com A Aug 31, 2026
t*p*c*e*o*a*p*i*a*t*a*a*e*.com A Aug 31, 2026
t*p*c*e*o*a*p*i*a*t*a*a*e*e*t*y*t*m.com A Aug 31, 2026
t*p*c*e*o*a*.com A Aug 31, 2026
t*p*c*e*o*.com A Aug 31, 2026
t*l*p*s*.com F Aug 31, 2026
m*b*.news (WP 7.1) F Aug 31, 2026
e*v*r*s*l*t*o*s*r*.com D Aug 31, 2026
i*m*b*l*e*-*e*a*l*e*.fr F Aug 31, 2026
e*v*r*p*a.com F Aug 31, 2026
l*k*l*b*s*a.com F Aug 31, 2026
y*k*-*o*n*.com (WP 7.1) F Aug 31, 2026
s*t*s*m*o*i*m.com F Aug 31, 2026
o*f*e*e*p*o*.sn (WP 7.1) F Aug 31, 2026
b*e*p*e*s.com F Aug 31, 2026
b*g*s.com (WP 6.5.9) F Aug 31, 2026
w*j*e*a*a.com F Aug 31, 2026
l*k*m*n*g*l*p*.com (WP 6.8.8) F Aug 31, 2026
l*n*.jp F Aug 31, 2026
l*k*n*t*s*a*i*h*t*s.com (WP 5.3.23) F Aug 31, 2026
l*k*n*t*s*a*i*f*e*i*g*.com F Aug 31, 2026
t*l*f*r*e.com F Aug 31, 2026
i*e*s*a*a*a*l*s*.com (WP 6.6.2) F Aug 31, 2026
g*l*a*a*i*o.it D Aug 31, 2026
s*a*k*i*u*e.com F Aug 31, 2026
y*k*y*s*i*a*a.com (WP 6.7.7) F Aug 31, 2026
f*y*r*m*u*u*k*.jp F Aug 31, 2026
r*i*e*u.com (WP 6.7.7) D Aug 31, 2026
a*o*t*o*d*u*f*c*s.com F Aug 31, 2026
c*y*t*b*d*e*.com F Aug 31, 2026
y*k*v*.com (WP 7.1) F Aug 31, 2026
y*k*s*z*m*.com (WP 5.1.6) F Aug 31, 2026
v*s*o*e*u*d*e*e.de F Aug 31, 2026
y*k*s*t*u*i.com (WP 7.0.4) F Aug 31, 2026
j*r*i*a*p*.com D Aug 31, 2026
t*p*i*s*l*u*p.com (WP 6.7.7) F Aug 31, 2026
g*z*s*r*.c*.jp F Aug 31, 2026
t*k*u*f.com (WP 2.8.6) F Aug 31, 2026
w*c*n*j*a*g.com F Aug 31, 2026
y*k*n*k*-*e*-*e*i*n.com F Aug 31, 2026
w*b*i*k.ru (WP 4.9.31) F Aug 31, 2026
y*k*n*-*r*.com (WP 7.1) F Aug 31, 2026
e*o*u*.ngo (WP 7.0.2) F Aug 31, 2026
e*o*u*.ong (WP 7.0.2) F Aug 31, 2026
w*-*a*g.com (WP 4.6.29) F Aug 31, 2026
h*n*m*n*s*t*n*a*o*a.com (WP 7.0.4) F Aug 31, 2026
m*r*a*l*r*o*l*n*.com F Aug 31, 2026
t*k*a*s*l*t.com F Aug 31, 2026
m*c*o*e*s*i.c*.jp (WP 7.1) F Aug 31, 2026
f*c*s*d*i*a*c*a*.c*.uk F Aug 31, 2026
n*e*e*b*o.com (WP 5.3.23) F Aug 31, 2026
s*t*r*p*f*n.com (WP 6.9.7) F Aug 31, 2026
j*r*a*n*s.com F Aug 31, 2026
h*n*o*n*.com F Aug 31, 2026
h*n*e*p*a*n*n*-*t*.com (WP 6.7.7) F Aug 31, 2026
j*r*a*m*d*a*o.com F Aug 31, 2026
t*p*a*z*.com D Aug 31, 2026
w*s*a*1*7*.com (WP 7.0.2) F Aug 31, 2026
r*i*e*s*d*e*x*.com B Aug 31, 2026
t*k*e*o*t*.com (WP 5.2.20) F Aug 31, 2026
o*l*n*w*e*d*s*e*s*r*.co F Aug 31, 2026
a*o*c*f*e*c*.com F Aug 31, 2026
y*k*h*r*-*o*h*d*.com (WP 5.7.17) F Aug 31, 2026
w*s*-*b*r*k*.jp F Aug 31, 2026
r*i*e*o*e*i*s*i*e.com (WP 7.0.4) D Aug 31, 2026
j*r*a*k*s*e*e*.com (WP 4.1.1) D Aug 31, 2026
y*k*a*a*i*l*w.com (WP 6.2.11) F Aug 31, 2026
d*m*.uk F Aug 31, 2026
m*c*a*l*f*e*c*.net F Aug 31, 2026
n*e*g*e*n.com (WP 6.6.7) F Aug 31, 2026
j*r*a*h*l*s.com F Aug 31, 2026
r*i*e*c*i*o.com F Aug 31, 2026
b*-*s.com F Aug 31, 2026
h*n*o*s*a*c*.com D Aug 31, 2026
b*-*i*i.com (WP 7.1) F Aug 31, 2026
t*i*h*n.c*.jp (WP 7.1) F Aug 31, 2026
h*n*o*a*d*o*r*.com F Aug 31, 2026
t*k*o*p.com (WP 6.3.5) A Aug 31, 2026
a*r*c.se F Aug 31, 2026
a*o*a*i*n*o*c*n*o.com (WP 7.1) F Aug 31, 2026
b*s*n*i*t*o.com (WP 6.9.7) F Aug 31, 2026

Top 50 Plugins

Plugin Count
elementor 1,739,879
contact-form-7 1,728,571
elementor-pro 1,036,011
woocommerce 803,836
revslider 595,230
jetpack 447,273
js_composer 410,518
wp-rocket 330,484
essential-addons-for-elementor-lite 259,207
gravityforms 253,754
complianz-gdpr 253,072
google-site-kit 244,139
cookie-law-info 224,490
instagram-feed 220,952
sitepress-multilingual-cms 207,215
header-footer-elementor 201,775
google-analytics-for-wordpress 200,589
bluehost-wordpress-plugin 189,941
elementskit-lite 175,301
gutenberg 168,994
litespeed-cache 145,456
cookie-notice 145,433
gutenberg-core 143,862
gtranslate 121,507
the-events-calendar 121,062
wpforms-lite 119,506
astra-sites 109,584
popup-maker 107,489
woocommerce-payments 107,266
tablepress 101,602
honeypot 96,925
coblocks 96,563
astra-addon 91,882
duracelltomi-google-tag-manager 88,934
wp-smushit 88,823
layerslider 86,910
all-in-one-seo-pack 86,830
bb-plugin 85,005
akismet 83,406
ml-slider 82,207
premium-addons-for-elementor 81,462
cleantalk-spam-protect 80,681
mailchimp-for-wp 79,409
megamenu 78,992
ewww-image-optimizer 77,089
jet-engine 76,822
wp-pagenavi 76,733
fusion-builder 75,643
smart-slider-3 74,607
gravityformsrecaptcha 73,036

Top 50 Themes

Theme Count
hello-elementor 612,295
Divi 486,125
astra 405,338
flatsome 144,818
Avada 118,959
generatepress 112,712
pub 99,638
oceanwp 78,635
kadence 77,926
enfold 67,274
salient 63,779
twentyseventeen 53,353
twentytwentyfour 52,364
bb-theme 51,882
betheme 51,743
cocoon-master 50,235
blocksy 50,123
h4 50,093
twentytwentyfive 45,632
woodmart 44,793
dt-the7 44,690
neve 37,240
Avada-Child-Theme 36,501
gox 36,054
lightning 30,739
bridge 30,461
twentytwentyone 29,596
swell 29,230
twentytwenty 28,207
bricks 26,753
Impreza 25,647
Newspaper 23,752
twentytwentythree 21,574
epik-redesign 18,885
twentytwentytwo 18,351
uncode 18,083
twentysixteen 17,413
pro 17,359
storefront 15,909
sydney 15,821
Total 14,147
factory-templates-4 13,842
hello-theme-child-master 13,745
themify-ultra 12,760
hestia 12,351
yootheme 12,311
yith-wonder 11,791
porto 11,659
jupiter 11,647
twentyfifteen 11,546