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

Plugin: page-list (Used by 13,516 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
k*r*a*o*.com (WP 6.9.4) βœ… F 2026-04-15 20:57:03
m*t*y*u*e*a*s*r*l*a.com (WP 6.9.4) βœ… F 2026-04-15 20:35:28
r*e*t*r*e*w*r*h*u*e.com βœ… F 2026-04-15 20:34:26
m*t*u*e*a*s*r*l*a.com (WP 6.9.4) βœ… F 2026-04-15 20:29:43
d*y*f*e*d*y*u*i*.com βœ… F 2026-04-15 20:26:36
m*t*s*o*s*e*u*t*a*i*.com (WP 6.9.4) βœ… F 2026-04-15 20:26:13
m*t*s*s*e.com (WP 6.9.4) βœ… F 2026-04-15 20:21:08
r*e*c*s*c*a*t*r*.com βœ… F 2026-04-15 20:06:57
m*t*o*d*m*n*.com (WP 6.9.4) βœ… F 2026-04-15 20:06:50
k*r*i*g*o*a*u*a.com (WP 6.4.8) ⚠️ F 2026-04-15 19:55:54
h*a*i*g*o*e*a*h*.com βœ… D 2026-04-15 19:40:55
a*d*i*n*r*o*.com βœ… F 2026-04-15 19:40:31
e*p*e*s*e*t*s*.com βœ… F 2026-04-15 19:39:45
d*w*t*l*d*s*d*o*s.com (WP 6.9.4) πŸ”“ F 2026-04-15 19:39:13
r*e*o*d*a*e*e*.com βœ… F 2026-04-15 19:36:15
a*i*.vyaparapp.in βœ… D 2026-04-15 19:26:34
t*a*n*i*h*f*.com βœ… F 2026-04-15 19:19:19
b*a*l*y*t*a*e*y*r*u*.com (WP 6.9.4) βœ… F 2026-04-15 19:19:19
b*a*l*y*o*t.com (WP 6.9.4) βœ… F 2026-04-15 19:16:04
a*d*e*s*i*h*r*.com (WP 6.8.2) βœ… F 2026-04-15 19:12:56
g*e*n*u*l*i*g*t*n*a*d*c*d*.com (WP 6.9.4) βœ… F 2026-04-15 19:08:53
d*w*b*r*l*y.com βœ… F 2026-04-15 19:04:57
s*a*t*e*s*i*s.com βœ… D 2026-04-15 19:02:54
a*d*e*p*s*o*l*w.com βœ… D 2026-04-15 18:49:26
t*a*n*n*-*u*f.com βœ… F 2026-04-15 18:31:35
d*v*o*a*t*.com (WP 6.9.4) βœ… F 2026-04-15 18:29:58
b*a*c*r*e*g*l*.com (WP 6.9.4) βœ… D 2026-04-15 18:23:53
z*n*t*l*m.com βœ… D 2026-04-15 18:05:07
z*n*c.com (WP 6.8.3) βœ… F 2026-04-15 17:58:06
m*t*r*a*s*u*n*a*a.com (WP 6.6.5) βœ… F 2026-04-15 17:57:47
d*v*s*e*i*n.com (WP 6.9.4) βœ… D 2026-04-15 17:52:34
a*o.mo.gov βœ… D 2026-04-15 17:45:40
r*d*t*t*i*s.com (WP 6.9.4) βœ… D 2026-04-15 17:45:12
z*n*o*t*n*.com (WP 6.9.4) βœ… F 2026-04-15 17:44:59
o*f*r*o*.com βœ… D 2026-04-15 17:27:43
e*p*o*i*g*i*w*r*.com (WP 6.9.4) βœ… F 2026-04-15 17:25:29
e*p*o*i*g*n*e*b*.com (WP 4.9.9) ⚠️ D 2026-04-15 17:25:28
t*a*l*r*e*l*r*i*s*r*n*e.com βœ… C 2026-04-15 17:14:03
t*a*l*r*e*l*r*a*s*r*.com βœ… C 2026-04-15 17:14:03
z*n*e*-*l*m.com βœ… D 2026-04-15 17:05:16
d*v*d*m*r*i*l*w.com βœ… F 2026-04-15 17:02:25
t*a*o*c*.com (WP 6.9.4) πŸ”“ F 2026-04-15 16:45:56
z*l*v*r*e*h*d*c*a*.com βœ… F 2026-04-15 16:39:50
z*l*t*e*.com (WP 6.8.5) βœ… F 2026-04-15 16:35:41
d*v*d*o*i*s*r*n*e*n*i*e.com βœ… F 2026-04-15 16:23:37
b*m*t*.com βœ… F 2026-04-15 16:22:41
b*m*t*r.com βœ… F 2026-04-15 16:22:41
t*a*f*c*i*k*t*.com βœ… F 2026-04-15 16:22:18
d*v*d*o*-*o.com βœ… F 2026-04-15 16:21:21
s*a*k*i*e*t*a*e*y.com βœ… F 2026-04-15 16:18:42
d*v*d*e*h.com βœ… F 2026-04-15 16:09:46
a*d*e*s*l*n*.com (WP 6.8.5) βœ… F 2026-04-15 15:59:19
r*d*a*b*l*r*o*.com βœ… D 2026-04-15 15:58:44
k*r*y*g*.com (WP 6.9.4) βœ… F 2026-04-15 15:55:21
k*r*y*g*a*t*u*a*i*n*e*t.com (WP 6.9.4) βœ… F 2026-04-15 15:55:21
k*r*t*m*s*i*.com (WP 6.9.4) βœ… F 2026-04-15 15:46:46
h*d*e*n*o*.com βœ… F 2026-04-15 15:33:49
b*a*t*c*n*u*t*n*.com βœ… C 2026-04-15 15:30:08
e*p*o*e*a*g*o*n*w.com (WP 6.8.5) βœ… F 2026-04-15 15:28:45
d*v*d*i*s*.com βœ… A 2026-04-15 15:18:18
m*s*u*a*a*o*n*a*i*n.com (WP 6.9.4) βœ… D 2026-04-15 15:11:19
e*p*o*a*i*t*a*e*.com βœ… F 2026-04-15 15:05:12
h*t*i*s.com βœ… F 2026-04-15 14:59:50
h*s*n*o*l*v*n*.com βœ… F 2026-04-15 14:49:00
k*r*n*-*r*f*i*h.com βœ… F 2026-04-15 14:39:08
e*p*r*d*i*t*n*s*s*e*f*r*e*l*s*a*e.com (WP 6.9.4) βœ… F 2026-04-15 14:32:02
a*v*c*c*.calchamber.com (WP 6.9.4) πŸ”“ F 2026-04-15 14:23:49
r*d*d*i*e.com (WP 6.4.2) ⚠️ F 2026-04-15 14:21:24
r*d*o*s*s*a*i*g.com βœ… F 2026-04-15 14:14:12
z*d*e*a*e*h*o*o*y.com (WP 6.9.4) βœ… F 2026-04-15 14:12:22
k*r*h*a*i*g*r*s.com (WP 6.9.4) βœ… F 2026-04-15 14:11:28
g*o*a*a*m.com (WP 6.8.2) βœ… F 2026-04-15 14:05:56
b*y*s*r*i*e*r*u*.com βœ… F 2026-04-15 14:04:36
b*y*l*n*s*a*i*g.com βœ… F 2026-04-15 14:01:39
h*f*.com βœ… F 2026-04-15 14:00:08
o*r*t*u*s.com (WP 6.9.4) βœ… F 2026-04-15 13:55:39
b*y*a*d*s*o*i*t*s.com (WP 6.8.5) βœ… F 2026-04-15 13:55:28
b*y*-*e*t*l*.com βœ… F 2026-04-15 13:55:28
p*r*y*e*l*t*.flywheelsites.com (WP 6.9.4) βœ… D 2026-04-15 13:53:23
a*i*r*s*u*c*s.co.uk βœ… F 2026-04-15 13:49:28
z*b*a*n*k*.com βœ… F 2026-04-15 13:45:23
r*d*l*n*r*c*a*d*t*n*.com βœ… F 2026-04-15 13:30:16
k*r*n*u*f*o*.com βœ… D 2026-04-15 13:29:24
b*x*e*h*o*o*y.com βœ… A 2026-04-15 13:26:03
s*a*y*s*e*d*h*p.com βœ… F 2026-04-15 13:25:05
e*p*r*l*w*i*m.com βœ… F 2026-04-15 13:22:59
b*x*i*.com βœ… A 2026-04-15 13:18:10
b*x*p*i*n*r*g*l*t*o*.com βœ… A 2026-04-15 13:14:21
b*x*p*i*n*e*c*a*g*.com βœ… A 2026-04-15 13:14:21
b*x*p*i*n*.com βœ… A 2026-04-15 13:14:21
b*x*p*e*.com βœ… A 2026-04-15 13:14:21
b*x*f*i*e*o*.com (WP 6.9.4) βœ… F 2026-04-15 13:11:46
k*r*n*a*v*n*e*l*o*s.com βœ… A 2026-04-15 13:08:11
z*z*p*o*k.com (WP 6.9.4) βœ… F 2026-04-15 13:07:37
s*a*i*t.com βœ… F 2026-04-15 13:01:43
e*u*a*i*n.commongroundalliance.com βœ… F 2026-04-15 12:54:15
g*m*r*l*i*u*t*r*.com βœ… F 2026-04-15 12:53:53
h*m*l*i*f*e*d.com βœ… F 2026-04-15 12:52:59
r*d*m*t*v*d*v*l*p*e*t*.com βœ… F 2026-04-15 12:48:05
b*x*r*e*l*b*r*a*i*a.com βœ… F 2026-04-15 12:39:32

Top 50 Plugins

Plugin Count
elementor 3,346,694
contact-form-7 2,897,965
elementor-pro 1,853,788
woocommerce 1,587,290
revslider 1,105,702
js_composer 702,257
jetpack 517,588
wp-rocket 501,904
essential-addons-for-elementor-lite 499,296
header-footer-elementor 447,736
elementskit-lite 424,476
gutenberg-core 380,985
google-analytics-for-wordpress 369,842
instagram-feed 366,848
google-site-kit 354,591
cookie-law-info 339,420
complianz-gdpr 335,485
gravityforms 331,898
wpforms-lite 326,075
astra-sites 319,995
sitepress-multilingual-cms 286,622
litespeed-cache 283,530
bluehost-wordpress-plugin 267,424
gtranslate 218,961
coblocks 197,829
cookie-notice 197,693
the-events-calendar 166,559
premium-addons-for-elementor 165,238
gutenberg 164,420
mailchimp-for-wp 160,686
astra-addon 159,214
bb-plugin 158,593
popup-maker 155,789
LayerSlider 150,799
pro-elements 148,836
wp-smushit 148,694
creame-whatsapp-me 147,567
click-to-chat-for-whatsapp 146,663
sg-cachepress 138,354
tablepress 137,481
custom-fonts 137,270
woocommerce-gateway-stripe 130,252
royal-elementor-addons 129,955
duracelltomi-google-tag-manager 127,494
smart-slider-3 127,102
pixelyoursite 125,192
ultimate-addons-for-gutenberg 123,726
cleantalk-spam-protect 123,622
fusion-builder 118,887
megamenu 118,708

Top 50 Themes

Theme Count
hello-elementor 1,045,895
astra 915,652
Divi 847,091
pub 250,982
generatepress 196,254
flatsome 194,619
Avada 175,335
h4 168,672
oceanwp 144,036
kadence 125,835
enfold 104,257
bb-theme 103,614
twentytwentyfive 101,632
salient 101,219
blocksy 100,136
twentytwentyfour 99,471
cocoon-master 94,680
betheme 85,737
woodmart 80,455
twentyseventeen 78,904
dt-the7 68,742
neve 60,598
twentytwentyone 52,263
bridge 51,313
swell 50,610
lightning 45,097
twentytwentythree 44,634
twentytwenty 44,027
Avada-Child-Theme 41,827
gox 39,495
Impreza 35,843
bricks 35,518
Newspaper 34,068
twentytwentytwo 33,567
storefront 27,571
yith-wonder 27,434
extendable 27,275
pro 26,832
epik-redesign 26,685
uncode 26,262
themify-ultra 26,061
twentysixteen 25,484
sydney 25,004
twentyfifteen 24,561
Total 22,368
porto 21,720
hestia 20,041
go 19,688
thrive-theme 18,926
popularfx 18,730