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

Plugin: page-list (Used by 11,399 domains)

Page-list

πŸ‘€ webvitaly πŸ“¦ v5.9 πŸ”— Plugin Homepage

shortcodes:

  • [pagelist] – hierarchical tree of all pages on site (useful to show sitemap of the site);
  • [subpages] – hierarchical tree of subpages to the current page;
  • [siblings] – hierarchical tree of sibling pages to the current page;
  • [pagelist_ext] – list of pages with featured image and with excerpt;

examples with aditional parameters:

  • [pagelist child_of="4" depth="2" exclude="6,7,8"]
  • [pagelist_ext child_of="4" exclude="6,7,8" image_width="50" image_height="50"]
  • all Page-list params

Parameters for [pagelist], [subpages] and [siblings]:

  • [pagelist] – list of all pages as the hierarchical list;
  • [subpages] – list of subpages to the current page as the hierarchical list; Same as: [pagelist child_of="current"];
  • [siblings] – list of sibling pages to the current page as the hierarchical list; Same as: [pagelist child_of="parent"];
  • depth – how many levels in the hierarchy of pages are to be included in the list: [pagelist depth="3"]; by default depth is unlimited (depth=”0β€³); Displays pages at any depth and arranges them in a flat list: [pagelist depth="-1"];
  • child_of – displays the sub-pages of a single Page by ID: [pagelist child_of="4"];
  • exclude – define a comma-separated list of Page IDs to be excluded from the list: [pagelist exclude="6,7,8"]; You may exclude current page: [pagelist exclude="current"];
  • exclude_tree – define a comma-separated list of parent Page IDs and all its subpages to be excluded: [pagelist exclude_tree="7,10"];
  • include – include a comma-separated list of Page IDs into the list: [pagelist include="6,7,8"];
  • title_li – set the text and style of the Page list’s heading: [pagelist title_li="

    List of pages

    "]
    ; by default there is no title (title_li=””);
  • authors – only include pages authored by the authors in this comma-separated list of author IDs: [pagelist authors="2,5"]; by default all authors are included (authors=””);
  • number – sets the number of pages to display: [pagelist number="10"]; by default the number is unlimited (number=””);
  • offset – the number of pages to pass over (or displace) before collecting the set of pages: [pagelist offset="5"]; by default there is no offset (offset=””);
  • post_type – list associated with a certain hierarchical Post Type [pagelist post_type="page"]; by default: (post_type=”page”); possible values: page, revision, Hierarchical Custom Post Types (β€˜post’ is not a Hierarchical Post Type);
  • post_status – a comma-separated list of all post status types: [pagelist post_status="private"]; by default: (post_status=”publish”); possible values: publish, private, draft;
  • meta_key and meta_value – only include the pages that have this Custom Field Key and this Custom Field Value: [pagelist meta_key="metakey" meta_value="metaval"];
  • show_date – display creation or last modified date next to each Page: [pagelist show_date="created"]; possible values: created, modified, updated;
  • date_format – the format of the Page date set by the show_date parameter: [pagelist date_format="l, F j, Y"]; by default use the date format configured in your WordPress options;
  • sort_column – sort the list of pages by column: [pagelist sort_column="menu_order"]; by default: (sort_column=”menu_order, post_title”); possible values: post_title, menu_order, post_date (sort by creation time), post_modified, ID, post_author, post_name (sort by page slug);
  • sort_order – the sort order of the list of pages (either ascending or descending): [pagelist sort_order="desc"]; by default: (sort_order=”asc”); possible values: asc, desc;
  • link_before – sets the text or html that precedes the link text inside link tag: [pagelist link_before=""]; you may specify html tags only in the HTML tab in your Rich-text editor;
  • link_after – sets the text or html that follows the link text inside link tag: [pagelist link_after=""]; you may specify html tags only in the HTML tab in your Rich-text editor;
  • class – the CSS class for list of pages: [pagelist class="listclass"]; by default the class is empty (class=””);
  • columns – for splitting list of pages into columns: [pagelist class="page-list-cols-2"]; available classes: page-list-cols-2, page-list-cols-3, page-list-cols-4, page-list-cols-5; works in all modern browsers and IE10+; columns are responsive and become 1 column at less than 768px;

More info about params for [pagelist], [subpages], [siblings].

Parameters for [pagelist_ext]:

  • [pagelist_ext] – by default shows list of subpages to current page; but if there is no subpages than all pages will be shown;
  • show_image – show or hide featured image [pagelist_ext show_image="0"]; β€œshow_image” have higher priority than β€œshow_first_image”; by default: show_image=”1β€³;
  • show_first_image – show or hide first image from content if there is no featured image [pagelist_ext show_first_image="1"]; by default: show_first_image=”0β€³;
  • show_title – show or hide title [pagelist_ext show_title="0"]; by default: show_title=”1β€³;
  • show_content – show or hide content [pagelist_ext show_content="0"]; by default: show_content=”1β€³;
  • more_tag – output all content before and after more tag: [pagelist_ext more_tag="0"]; this parameter does not add β€œmore-link” to the end of content, it just cut content before more-tag; β€œmore_tag” parameter have higher priority than β€œlimit_content”; by default the more_tag is enabled (more_tag=”1β€³) and showing only content before more tag;
  • limit_content – content is limited by β€œmore-tag” if it is exist or by β€œlimit_content” parameter [pagelist_ext limit_content="100"]; by default: limit_content=”250β€³;
  • image_width – width of the image [pagelist_ext image_width="80"]; by default: image_width=”50β€³;
  • image_height – height of the image [pagelist_ext image_height="80"]; by default: image_height=”50β€³;
  • child_of – displays the sub-pages of a single Page by ID: [pagelist_ext child_of="4"]; by default it shows subpages to the current page;
  • parent – list those pages that have the provided single page only ID as parent: [pagelist_ext parent="4"]; by default parent=”-1β€³ and depth is unlimited;
  • sort_column – sort the list of pages by column: [pagelist_ext sort_column="menu_order"]; by default: (sort_column=”menu_order, post_title”); possible values: post_title, menu_order, post_date (sort by creation time), post_modified, ID, post_author, post_name (sort by page slug);
  • sort_order – the sort order of the list of pages (either ascending or descending): [pagelist_ext sort_order="desc"]; by default: (sort_order=”asc”); possible values: asc, desc;* hierarchical – display subpages below their parent page [pagelist_ext hierarchical="0"]; by default: hierarchical=”1β€³;
  • hierarchical – display subpages below their parent page [pagelist_ext hierarchical="0"]; by default: hierarchical=”1β€³;
  • exclude – define a comma-separated list of Page IDs to be excluded from the list: [pagelist_ext exclude="6,7,8"];
  • exclude_tree – define a comma-separated list of parent Page IDs and all its subpages to be excluded: [pagelist_ext exclude_tree="7,10"];
  • include – include a comma-separated list of Page IDs into the list: [pagelist_ext include="6,7,8"];
  • meta_key and meta_value – only include the pages that have this Custom Field Key and this Custom Field Value: [pagelist_ext meta_key="metakey" meta_value="metaval"];
  • authors – only include the pages written by the given author(s) [pagelist_ext authors="6,7,8"];
  • number – sets the number of pages to display: [pagelist_ext number="10"]; by default the number is unlimited (number=””);
  • offset – the number of pages to pass over (or displace) before collecting the set of pages: [pagelist_ext offset="5"]; by default there is no offset (offset=””);
  • post_type – list associated with a certain hierarchical Post Type [pagelist_ext post_type="page"]; by default: (post_type=”page”); possible values: page, revision, Hierarchical Custom Post Types (β€˜post’ is not a Hierarchical Post Type);
  • post_status – a comma-separated list of all post status types: [pagelist_ext post_status="private"]; by default: (post_status=”publish”); possible values: publish, private, draft;
  • class – the CSS class for list of pages: [pagelist_ext class="listclass"]; by default the class is empty (class=””);
  • strip_tags – strip tags or not: [pagelist_ext strip_tags="0"]; by default the tags are stripped (strip_tags=”1β€³);
  • strip_shortcodes – strip registered shortcodes or not: [pagelist_ext strip_shortcodes="0"]; by default shortcodes are stripped (strip_shortcodes=”1β€³) and all registered shortcodes are removed;
  • show_child_count – show count of subpages: [pagelist_ext show_child_count="1"]; by default the child_count is disabled (show_child_count=”0β€³); If show_child_count=”1β€³, but count of subpages=0, than child count is not shown;
  • child_count_template – the template of child_count: [pagelist_ext show_child_count="1" child_count_template="Subpages: %child_count%"]; by default child_count_template=”Subpages: %child_count%”;
  • show_meta_key – show or hide meta key: [pagelist_ext show_meta_key="your_meta_key"]; by default the show_meta_key is empty (show_meta_key=””); If show_meta_key is enabled, but meta_value is empty, than meta_key is not shown;
  • meta_template – the template of meta: [pagelist_ext show_meta_key="your_meta_key" meta_template="Meta: %meta%"]; by default meta_template=”%meta%”;
  • columns – for splitting list of pages into columns: [pagelist_ext class="page-list-cols-2"]; available classes: page-list-cols-2, page-list-cols-3, page-list-cols-4, page-list-cols-5; works in all modern browsers and IE10+; columns are responsive and become 1 column at less than 768px;

More info about params for [pagelist_ext].

DomainExposuresHeadersLast Checked
s*c.c*h*.e*u.hk βœ… F 2026-06-13 02:14:34
v*d*a*v*c*t*n.nl βœ… F 2026-06-13 02:11:47
v*s*o*.e*u.sa πŸ”“ B 2026-06-13 01:36:29
a*a*r*c*.org (WP 6.6.2) βœ… A 2026-06-13 01:35:30
u*s.f*.c*n*.cz βœ… F 2026-06-13 01:29:52
s*h*o*5*9.s*b.ru (WP 7.0) βœ… F 2026-06-13 01:21:04
g*i*i*.ru (WP 6.2.9) ⚠️ F 2026-06-13 00:59:39
k*r*b*t*l.ru (WP 6.7.5) βœ… F 2026-06-13 00:54:51
f*u*-*s*t*a.ru (WP 6.8.1) βœ… F 2026-06-13 00:28:57
f*c*s*b*n*u*s.fr βœ… A 2026-06-13 00:21:00
w*l*l*f*e*c*p*s.c*.uk (WP 7.0) βœ… F 2026-06-13 00:03:36
g*a*e*k*r*h*-*a*h*u.de (WP 6.1.10) ⚠️ πŸ”“ F 2026-06-12 23:51:14
t*e*a*y*n*o*i*n.net βœ… D 2026-06-12 23:50:56
l*w*i*s*u*i.com βœ… F 2026-06-12 23:42:34
s*o*e*o*p*e*h.ro (WP 6.7.5) βœ… F 2026-06-12 23:14:39
a*t*r*s.nl (WP 7.0) βœ… F 2026-06-12 22:53:13
m*r*h*l*p*.b*g*t.tech βœ… F 2026-06-12 22:28:30
i*t*l*i*o*-*l*g.de (WP 7.0) βœ… F 2026-06-12 22:16:27
e*i.f*u.edu βœ… C 2026-06-12 22:13:20
g*m*a*i*m*w*r*i*g*n.de (WP 7.0) βœ… F 2026-06-12 22:01:01
l*f*-*i*e.nl βœ… C 2026-06-12 21:51:16
r*p*8*.r*p*.net βœ… F 2026-06-12 21:41:22
c*c*r.fr (WP 7.0) βœ… F 2026-06-12 21:35:54
b*s*c*e*d*.c*l*s*a*e.edu βœ… C 2026-06-12 21:27:14
s*a*d*n*v*l*a*e.c*.uk (WP 7.0) βœ… F 2026-06-12 21:17:08
f*o*e*-*e*e*.com βœ… F 2026-06-12 20:55:51
s*u*e*i*-*a*o*i*r*i*s.it βœ… F 2026-06-12 20:54:31
a*s*c*a*i*n*l*r*n*i*.it (WP 6.4.8) ⚠️ F 2026-06-12 20:22:52
e*e*e*.f*c*l*y.u*d*v*s.edu (WP 6.9.1) βœ… F 2026-06-12 20:19:03
l*p*n*w.pl βœ… A 2026-06-12 20:16:56
z*e*a*d*a*a*t*e*o*i*g.eu (WP 7.0) βœ… F 2026-06-12 20:06:27
d*n*w.fr (WP 4.7.3) ⚠️ F 2026-06-12 20:02:57
d*s*a*i*g*z.ru (WP 5.9.13) ⚠️ F 2026-06-12 19:56:18
c*c.c*m.cy (WP 6.9.4) βœ… F 2026-06-12 19:56:13
o*e*g*s.it (WP 6.8.1) βœ… F 2026-06-12 19:55:40
e*.u*d.e*u.mk (WP 7.0) βœ… F 2026-06-12 19:43:53
l*g*k*.f*.c*n*.cz βœ… F 2026-06-12 19:20:56
s*r*n*.s*e*3.fr (WP 7.0) βœ… F 2026-06-12 19:13:52
d*3*1*8*9*.l*l*p*p.jp (WP 6.2.9) ⚠️ F 2026-06-12 19:04:13
b*r*i*-*v*-*d*.v*n*b*a.de (WP 7.0) βœ… F 2026-06-12 19:02:17
r*d*s.c*m.pl βœ… F 2026-06-12 18:47:47
b*i*g*a*e*-*c.g*v.uk βœ… D 2026-06-12 18:38:36
s*a*m*p*a*t*c*u*g*r*.com βœ… F 2026-06-12 18:35:42
h*r*z*n.a*.uk βœ… C 2026-06-12 17:57:44
h*l*n*v*n*h*m*.y*l*g*a*e*.com πŸ”“ A 2026-06-12 17:40:50
a*b*n*a.c*.il βœ… F 2026-06-12 17:38:22
d*m*n*c*n*r*p*b*i*.c*.il βœ… F 2026-06-12 17:38:22
n*r*a*.c*.il βœ… F 2026-06-12 17:38:22
a*o*e*.c*.il βœ… F 2026-06-12 17:38:22
m*n*c*.c*.il βœ… F 2026-06-12 17:38:22
e*h*o*i*.c*.il βœ… F 2026-06-12 17:38:22
c*s*a*r*c*.c*.il βœ… F 2026-06-12 17:38:22
s*s*c*t*a*d.o*g.uk (WP 6.9.4) βœ… F 2026-06-12 17:37:13
j*.e*e*i*o*.com βœ… F 2026-06-12 17:30:54
c*n*o*d*m*.net βœ… F 2026-06-12 17:25:14
n*t*o*a*l*b*r*t*r*s*l*s.com βœ… F 2026-06-12 17:11:45
b*i*n*o*h*a*l*w.c*m.m*j*i*o*t*n*s*t*.com (WP 6.8.5) βœ… F 2026-06-12 17:10:04
g*a*.s*a*.u*e*n.edu (WP 7.0) βœ… F 2026-06-12 16:56:56
a*p*r*t*o*h*s*i*g.com (WP 6.9.4) βœ… C 2026-06-12 16:51:36
c*i*a*e*a*k*t*n*.c*m.au (WP 6.8.5) βœ… F 2026-06-12 16:49:45
g*a*s*o*t*c*a.com (WP 7.0) βœ… D 2026-06-12 16:43:04
a*g*t*e*b*t*i*f*-*u*n*h*n.de βœ… F 2026-06-12 16:19:24
q*.s*o*s*r*d*w*e*s.com (WP 6.9.4) βœ… F 2026-06-12 16:18:27
s*h*o*4*4.s*b.ru βœ… F 2026-06-12 16:11:59
k*l*a*l*h.h*b*e*p*o*l*.com βœ… F 2026-06-12 16:06:40
t*e*a*t*o*p*n*.c*.uk βœ… C 2026-06-12 16:05:20
d*.r*l*a*e*m*n*g*r.com βœ… A 2026-06-12 15:55:57
i*n.g*v.my πŸ”“ F 2026-06-12 15:49:24
f*b*i*s*r*c*u*e*a*s*c*a*i*n.org βœ… F 2026-06-12 15:48:25
n*a*.uk (WP 7.0) βœ… F 2026-06-12 15:47:18
f*b*i*g*a*h*c*.t*x*i*e*.org βœ… F 2026-06-12 15:25:15
n*c*.o*g.uk (WP 6.9.4) βœ… F 2026-06-12 14:46:04
e*i*l*g.c*m.br (WP 6.9.4) βœ… D 2026-06-12 14:36:14
c*r.c*m.au βœ… F 2026-06-12 14:32:52
b*i*e*t*w*l*v*n*e*.c*m.au βœ… C 2026-06-12 14:25:36
a*s*r*l*a*a*r*a*a*i*.c*m.au βœ… C 2026-06-12 14:25:36
k*r*n*a*a*m*a*e.c*m.au βœ… C 2026-06-12 14:25:36
t*e*u*b*c*l*o*.c*m.au (WP 6.9.4) βœ… C 2026-06-12 14:25:36
p*r*l*n*o*n.c*m.au (WP 6.9.4) βœ… C 2026-06-12 14:25:36
c*m*e*.pl βœ… F 2026-06-12 14:21:14
h*m*n*t*e*.u*a*t*c*.edu βœ… F 2026-06-12 14:18:20
s*i*e*-*a*r*d.eu (WP 7.0) βœ… F 2026-06-12 14:15:50
a*n*m*r*e*a*e*.eu βœ… F 2026-06-12 14:09:38
g*n*-*r*u*s*i*.it βœ… F 2026-06-12 14:09:38
w*a*m*b*b*.c*.uk βœ… F 2026-06-12 14:01:49
f*n*t*k*.f*.c*n*.cz βœ… F 2026-06-12 14:00:23
c*k*l*a*d*n*e*.nl (WP 6.9.4) βœ… F 2026-06-12 13:57:04
t*e*o*d*s*j*u*n*y.org βœ… D 2026-06-12 13:56:47
s*i*s*l*u*.g*a*d*n*o*l*m*.fr (WP 6.7.5) βœ… F 2026-06-12 13:45:38
h*e*l*-*e*-*o*w*n.de βœ… F 2026-06-12 13:37:19
m*t*o*e*a*a*a*b*.g*b.ve (WP 7.0) βœ… F 2026-06-12 13:05:13
a*c*n*e*m*s*e*.org βœ… C 2026-06-12 13:04:36
i*d*v*d*a*s.h*a*t*r*f*r*q*o*e*.com βœ… D 2026-06-12 12:50:36
d*a*l*n*.com βœ… F 2026-06-12 12:48:43
e*.s*e*d*t*e*.com (WP 7.0) βœ… F 2026-06-12 12:48:28
a*d*.o*g.uk βœ… B 2026-06-12 12:43:46
r*f*g*t*n*b*i*d*e*s.o*g.uk βœ… B 2026-06-12 12:42:39
c*l*r*d*o*t*m*t*y.com (WP 7.0) βœ… F 2026-06-12 12:41:33
b*r*s*h*r*t*.o*g.uk βœ… C 2026-06-12 12:37:30
u*i.l*1.c*n*.cz (WP 5.9.3) ⚠️ F 2026-06-12 04:52:00

Top 50 Plugins

Plugin Count
elementor 1,804,676
contact-form-7 1,774,647
elementor-pro 1,052,070
woocommerce 818,340
revslider 619,144
jetpack 467,731
js_composer 433,323
wp-rocket 334,871
essential-addons-for-elementor-lite 294,324
gravityforms 267,431
complianz-gdpr 257,450
cookie-law-info 231,984
instagram-feed 228,564
google-site-kit 222,556
sitepress-multilingual-cms 221,752
google-analytics-for-wordpress 214,471
header-footer-elementor 210,692
elementskit-lite 207,322
bluehost-wordpress-plugin 190,863
gutenberg 162,584
gutenberg-core 159,846
cookie-notice 151,934
the-events-calendar 131,901
litespeed-cache 131,432
wpforms-lite 129,761
gtranslate 128,218
astra-sites 119,760
popup-maker 116,331
woocommerce-payments 113,135
tablepress 109,632
coblocks 99,799
honeypot 97,660
astra-addon 95,518
duracelltomi-google-tag-manager 93,815
wp-smushit 93,763
all-in-one-seo-pack 93,505
LayerSlider 91,849
bb-plugin 90,940
premium-addons-for-elementor 87,068
megamenu 86,751
akismet 86,190
cleantalk-spam-protect 84,014
mailchimp-for-wp 83,922
woocommerce-gateway-stripe 83,240
ml-slider 81,279
fusion-builder 79,819
borlabs-cookie 79,764
ewww-image-optimizer 79,228
wp-pagenavi 79,010
formidable 78,217

Top 50 Themes

Theme Count
hello-elementor 617,059
Divi 511,773
astra 424,516
flatsome 134,423
Avada 124,557
generatepress 120,600
pub 110,164
oceanwp 83,645
kadence 78,687
enfold 71,972
salient 66,826
twentytwentyfour 59,044
h4 56,523
twentyseventeen 56,327
bb-theme 55,346
cocoon-master 52,131
betheme 51,975
blocksy 50,852
dt-the7 46,271
twentytwentyfive 43,949
neve 39,466
Avada-Child-Theme 37,700
gox 33,497
woodmart 33,358
bridge 32,952
sydney 32,697
twentytwentyone 32,175
lightning 31,481
twentytwenty 30,111
swell 28,627
Impreza 26,527
bricks 26,071
twentytwentythree 24,067
Newspaper 23,540
voxel 22,441
twentytwentytwo 20,010
epik-redesign 19,274
sinatra 19,268
kubio 19,196
uncode 19,156
twentysixteen 18,262
storefront 17,916
pro 17,884
Total 14,759
extendable 14,627
yith-wonder 14,051
hello-theme-child-master 13,391
themify-ultra 13,012
yootheme 12,981
factory-templates-4 12,937