WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: wp-pagenavi (Used by 82,861 domains)

WP-PageNavi

πŸ‘€ Lester Chan πŸ“¦ v2.94.5 πŸ”— 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*i*-*e*t*l.jp (WP 6.9.4) βœ… F 2026-04-28 01:01:34
s*i*a*s*.jp (WP 5.9.13) ⚠️ F 2026-04-28 01:01:33
p*s*e*l.u*p*.br (WP 5.8.2) ⚠️ D 2026-04-28 01:00:07
p*g*e*g*a*i*.u*p*.br (WP 5.8.2) ⚠️ D 2026-04-28 01:00:07
c*e.u*p*.br βœ… D 2026-04-28 01:00:07
p*o*f*.u*p*.br (WP 6.8.5) βœ… D 2026-04-28 01:00:06
p*o*d.u*p*.br (WP 6.9.4) βœ… D 2026-04-28 01:00:06
s*c.u*p*.br (WP 6.7.5) βœ… D 2026-04-28 01:00:06
c*m*u*p*l*t*n*.u*p*.br (WP 6.8.5) βœ… D 2026-04-28 01:00:06
s*e*e.u*p*.br (WP 6.9.4) βœ… D 2026-04-28 01:00:06
s*u*h*a*g*r*d*n*u*e*.ca βœ… F 2026-04-28 00:59:19
s*n*m*n*g*r.de (WP 6.9) βœ… F 2026-04-28 00:58:25
b*y*n*9*1*.org (WP 6.7.5) βœ… F 2026-04-28 00:58:24
e*k*i*o*.space βœ… F 2026-04-28 00:56:57
a*i*n*l*b*a*y*o*a*a.org (WP 6.9.4) βœ… F 2026-04-28 00:56:56
o*m*s*i*a*u.jp βœ… F 2026-04-28 00:56:56
o*i*m*m*r*a*.org βœ… D 2026-04-28 00:56:55
i*h*s*i*.jp (WP 6.8.5) βœ… D 2026-04-28 00:56:55
c*r*s*a*i*r*o*.com βœ… F 2026-04-28 00:56:46
a*s*i*s*i*d*i*e*e*o*a*.com βœ… F 2026-04-28 00:56:34
v*c*o*i*.b*g*r*t*e*s*i*s*s*e*s.ca βœ… D 2026-04-28 00:55:38
e*e*g*n*.g*o*t*z*n*a*p.com βœ… F 2026-04-28 00:55:38
a*e*d*t*.c*m.au (WP 6.9.4) βœ… A 2026-04-28 00:55:37
f*o*b*l*p*d*a*t*.com βœ… F 2026-04-28 00:53:01
f*o*b*l*o*g*n.com (WP 6.9.4) βœ… F 2026-04-28 00:53:01
n*s*-*e*.com (WP 6.2.9) ⚠️ F 2026-04-28 00:52:47
d*-*h*m*.jp πŸ”“ F 2026-04-28 00:52:24
j*p*n*a*e*t*.j*p*n*s*o*t*.o*.jp (WP 6.9.4) βœ… F 2026-04-28 00:51:37
g*e*n*l*s*h*u*e*o*k*.com (WP 6.9.4) βœ… F 2026-04-28 00:51:27
v*e*t*n*h*t*n.com βœ… F 2026-04-28 00:50:55
v*e*t*l*e*v*c*s.com (WP 6.9) βœ… F 2026-04-28 00:50:53
f*a*m.org βœ… D 2026-04-28 00:50:35
p*r*o*e*i*a*o.net (WP 6.7.5) βœ… F 2026-04-28 00:49:38
i*s*g*t*p*o*i*.com βœ… A 2026-04-28 00:48:32
i*s*g*t*s*s.com (WP 6.6.5) βœ… F 2026-04-28 00:48:32
s*i*a*m*.co (WP 6.9.4) βœ… F 2026-04-28 00:48:07
d*p*e*d*n.jp πŸ”“ F 2026-04-28 00:48:07
c*o*d*u*d*n*.j*s*g*v*n*.com (WP 6.8.1) βœ… B 2026-04-28 00:48:06
3*-*a*a*c*u*.jp βœ… F 2026-04-28 00:48:06
n*n*o*h*-*a*k*.jp (WP 6.7.5) βœ… F 2026-04-28 00:48:06
t*i*a*.info (WP 6.7.1) βœ… D 2026-04-28 00:48:06
p*w*r*y*t*m*r*.com (WP 6.9) βœ… F 2026-04-28 00:46:20
d*b*s*o*i*i*n*n*s*l*t*o*s.com βœ… F 2026-04-28 00:45:55
c*r*s*y*o*d*.com βœ… F 2026-04-28 00:43:59
c*r*s*y*e*g*n*e*.com βœ… F 2026-04-28 00:43:59
t*u*n*g*y*n.net (WP 6.5.3) πŸ”“ F 2026-04-28 00:43:28
h*r*-*d*c*t*o*.de (WP 6.7.5) βœ… F 2026-04-28 00:43:28
m*l*r*k*.com (WP 5.0.19) ⚠️ F 2026-04-28 00:42:44
b*g*n*e*l*h.com βœ… F 2026-04-28 00:42:15
a*t*.c*.jp βœ… F 2026-04-28 00:41:47
d*f*n*t*e*l*u*.net (WP 6.9.4) βœ… F 2026-04-28 00:41:05
r*n*i*g*a*e*h*w.com βœ… F 2026-04-28 00:41:01
c*r*s*y*o*d*h*t*g*a*h*.com (WP 6.9.4) βœ… F 2026-04-28 00:40:49
e*t*t*-*u*s*.c*.jp πŸ”“ F 2026-04-28 00:40:10
i*s*g*t*a*.com βœ… F 2026-04-28 00:40:05
i*s*e*e*n*a*i*l*a.com πŸ“‘ D 2026-04-28 00:40:04
a*s*i*p*e*i*i*n*a*h*n*n*.com βœ… F 2026-04-28 00:39:03
a*s*i*p*t*c.com βœ… F 2026-04-28 00:39:02
c*n*u*e*h*l*.ie βœ… A 2026-04-28 00:38:40
m*n*r*-*s*o*.c*.jp (WP 6.1.1) ⚠️ F 2026-04-28 00:37:27
l*a*s*1*.vn (WP 6.9.4) βœ… F 2026-04-28 00:37:08
g*e*n*a*l*s*n*b*a*s*n.com (WP 6.6.5) βœ… C 2026-04-28 00:37:04
n*s*-*p*.com (WP 6.9.4) βœ… F 2026-04-28 00:36:12
n*s*i*a*u*t*m*.com βœ… D 2026-04-28 00:36:11
b*t*e*w*r*d*g*.org (WP 6.9.4) βœ… F 2026-04-28 00:36:10
d*a*t*e*d*.com (WP 6.9.4) βœ… F 2026-04-28 00:35:31
d*a*i*o*t*c*-*i*a*u.com (WP 6.9.4) βœ… F 2026-04-28 00:35:30
d*a*i*o*k.com (WP 6.9.4) βœ… F 2026-04-28 00:35:30
j*m*l*d*e.c*m.br πŸ”“ F 2026-04-28 00:35:16
c*r*s*i*g*e*e*r*.com (WP 6.9.4) βœ… F 2026-04-28 00:34:15
l*n*a*.com βœ… F 2026-04-28 00:34:12
m*l*n*r*s*e.com βœ… D 2026-04-28 00:33:56
k*n*o.t*k*c*o.net (WP 6.4.8) ⚠️ F 2026-04-28 00:33:43
r*i*b*w*p*i*t.jp (WP 6.7.5) βœ… F 2026-04-28 00:33:33
h*c*s*e*l*.jp (WP 6.9.4) βœ… F 2026-04-28 00:33:05
l*b*r*-*h*t*.com (WP 5.5.18) ⚠️ F 2026-04-28 00:33:02
n*c*r*0*3.com βœ… F 2026-04-28 00:31:49
t*e*m*r*c*n*n*o*a*o*.com (WP 6.7.5) βœ… D 2026-04-28 00:31:22
c*r*s*h*w*t*d*o.com (WP 6.9.4) βœ… F 2026-04-28 00:30:20
d*e*c*l*e*s*n*a*e.de (WP 6.9.1) βœ… F 2026-04-28 00:29:25
g*e*n*o*e*t*n*l*s*.com (WP 6.9.4) βœ… F 2026-04-28 00:28:33
g*c*l*.net βœ… C 2026-04-28 00:28:23
v*e*n*m*a*d*a*t*o*t*r*.com βœ… F 2026-04-28 00:25:52
l*b*r*a*s*y.com (WP 6.7.5) βœ… F 2026-04-28 00:25:10
l*b*r*a*r*s*u*c*.com βœ… F 2026-04-28 00:25:10
l*b*r*a*p*s*i*g.com βœ… F 2026-04-28 00:25:10
l*b*r*a*m*n*t*r.com βœ… F 2026-04-28 00:25:10
l*b*r*e.com βœ… D 2026-04-28 00:25:09
t*x*a*e*s*n*t*d*f*m*r*c*.org βœ… B 2026-04-28 00:24:35
d*k*r*u*.c*.jp βœ… F 2026-04-28 00:24:10
r*n*g*n*i*l*n*s.com βœ… D 2026-04-28 00:24:04
f*o*b*l*-*r*n*f*r*r*m*u*s.com βœ… D 2026-04-28 00:23:17
s*u*k*t*u.yokohama βœ… F 2026-04-28 00:21:10
h*n*o*p*l*c*.w*e*g*n*p*w*r*d.com βœ… B 2026-04-28 00:20:33
v*e*n*m*n*q*e*o*r.com (WP 6.7.5) βœ… F 2026-04-28 00:19:53
v*e*n*m*r*v*l*n*c*u*s*.com (WP 5.9.10) ⚠️ F 2026-04-28 00:19:52
d*c*o*4*.vn (WP 5.7.2) ⚠️ F 2026-04-28 00:17:34
c*r*s*o*i*o.com βœ… F 2026-04-28 00:17:09
c*r*s*i*g*n*c*n*t*u*t*o*.com βœ… F 2026-04-28 00:17:08
v*e*n*m*n*.com βœ… F 2026-04-28 00:15:27

Top 50 Plugins

Plugin Count
elementor 2,296,020
contact-form-7 2,112,077
elementor-pro 1,301,171
woocommerce 1,070,876
revslider 781,706
js_composer 518,037
jetpack 482,316
wp-rocket 381,369
essential-addons-for-elementor-lite 349,387
header-footer-elementor 291,450
gravityforms 284,103
gutenberg-core 272,914
elementskit-lite 271,276
instagram-feed 268,809
complianz-gdpr 265,852
google-analytics-for-wordpress 265,230
google-site-kit 259,072
cookie-law-info 257,387
sitepress-multilingual-cms 233,298
bluehost-wordpress-plugin 218,977
wpforms-lite 199,893
astra-sites 192,059
litespeed-cache 176,653
gutenberg 160,754
gtranslate 155,830
cookie-notice 151,715
coblocks 146,372
the-events-calendar 136,756
popup-maker 128,842
astra-addon 114,404
bb-plugin 113,855
premium-addons-for-elementor 111,878
LayerSlider 111,644
tablepress 110,511
wp-smushit 110,210
mailchimp-for-wp 109,003
duracelltomi-google-tag-manager 101,084
cleantalk-spam-protect 97,693
creame-whatsapp-me 97,207
woocommerce-gateway-stripe 97,148
akismet 96,811
honeypot 96,681
woocommerce-payments 95,836
megamenu 93,649
pro-elements 92,375
smart-slider-3 92,146
fusion-builder 91,637
custom-fonts 91,230
click-to-chat-for-whatsapp 90,345
pixelyoursite 89,088

Top 50 Themes

Theme Count
hello-elementor 749,021
Divi 619,957
astra 591,577
pub 183,940
generatepress 141,028
Avada 140,230
flatsome 140,135
h4 106,308
oceanwp 102,921
kadence 92,273
enfold 80,783
salient 77,863
bb-theme 71,767
twentytwentyfour 69,986
blocksy 66,299
cocoon-master 65,434
twentytwentyfive 63,491
twentyseventeen 63,269
betheme 62,812
dt-the7 52,398
woodmart 48,531
neve 45,836
twentytwentyone 39,697
bridge 38,979
Avada-Child-Theme 38,038
gox 35,732
swell 34,805
twentytwenty 34,767
lightning 34,356
twentytwentythree 32,116
bricks 28,436
Impreza 28,338
Newspaper 25,729
twentytwentytwo 25,275
epik-redesign 22,537
pro 21,126
storefront 21,025
extendable 20,913
uncode 20,832
twentysixteen 20,585
sydney 19,106
yith-wonder 18,999
themify-ultra 17,749
Total 17,025
twentyfifteen 15,697
porto 15,268
hestia 15,066
yootheme 14,187
twentynineteen 14,182
thrive-theme 14,115