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

Plugin: datalayer (Used by 30 domains)

DataLayer for GTM and Matomo

👤 Openmost 📦 v1.0.2 🔗 Plugin Homepage

Elevate your website analytics with the DataLayer plugin!
This robust plugin creates a fully populated and standardized dataLayer object, ensuring seamless integration with both Google Tag Manager and Matomo Tag Manager.

  • Instant Setup: Automatically generates and populates a dataLayer object with essential website and user interaction data.
  • Universal Compatibility: Works flawlessly with Google Tag Manager and Matomo Tag Manager, making it easier to manage your tagging needs.
  • Customizable Data: Easily add or modify data points to fit your specific tracking requirements.
  • Performance Optimized: Lightweight and optimized for speed to ensure your site remains fast and responsive.

Get a quick look at all the generated structures!

Archive page `dataLayer` structure

Easy access to your archive data with a standard event name and subject.

{
    "event": "view_archive_date", //_date may be replaces with _tax value
    "page": {
        "type": "archive",
        "title": "january 2025 - Example",
        "url": "https://example.com/2025/01",
        "path": "2025/01",
        "locale": "en_US",
        "archive_type": "date",
        "taxonomy": false,
        "post_type": false,
        "date": {
            "year": 2025,
            "month": 1,
            "day": null
        }
    }
}

Author page `dataLayer` structure

Easy access to all author details on his archive page.

{
    "event": "view_author",
    "page": {
        "id": 1,
        "nickname": "openmost",
        "display_name": "openmost",
        "first_name": "Ronan",
        "last_name": "HELLO",
        "description": "The creator of this super plugin",
        "type": "author",
        "url": "https://example.com/author/openmost",
        "path": "author/openmost",
        "title": "Author: openmost"
    }
}

Error page `dataLayer` structure

This dataLayer structure allows you to easily track the 404 error and detect the referring page that led to this error.
What a great trick yeah?

{
    "event": "view_error_404",
    "page": {
        "type": "error",
        "title": "Page not found - Website",
        "url": "https://example.com/url-that-encountered-a-404-error",
        "path": "/url-that-encountered-a-404-error",
        "locale": "en_US",
        "error_type": "404",
        "http_status_code": 404
    }
}

Search results page `dataLayer` structure

The search key in this object allows you to get the search term and total results to detect invalid searches.
Very useful for Matomo Tag Manager, and nice hack for Google Tag Manager.

{
    "event": "view_search_results",
    "page": {
        "type": "search",
        "url": "https://example.com",
        "path": "",
        "title": "You searched for Demo - Example",
        "locale": "en_US"
    },
    "search": {
        "search": "Demo",
        "search_cat": "",
        "search_count": 3,
        "query": "Demo",
        "found_posts": 3,
        "post_count": 3
    }
}

Home, Post Type `dataLayer` structure (blog posts, custom post type single page)

The following structure is generated for a single post page, but it automatically adapts to your custom post type, page, etc.

{
    "event": "view_single_post",
    "page": {
        "type": "post",
        "id": 1,
        "url": "https://example.com/blog/super-article-path",
        "path": "/blog/super-article-path",
        "title": "Super article title | Example",
        "locale": "en_US",
        "is_home": false,
        "is_front_page": false,
        "post_name": "super-article-path",
        "post_title": "Super article title",
        "post_excerpt": "",
        "post_status": "publish",
        "post_date": "2024-08-17 13:30:00",
        "post_date_gmt": "2024-08-17 13:30:00",
        "post_modified": "2024-08-17 13:30:00",
        "post_modified_gmt": "2024-08-17 13:30:00",
        "post_type_name": "post",
        "post_type_label": "Posts",
        "post_type": {
            "name": "post",
            "label": "Posts",
            "label_singular": "Post",
            "label_plural": "Posts",
            "description": "The super post type description"
        },
        "guid": "https://example.com/?p=1",
        "post_mime_type": false,
        "comment_status": "open",
        "comment_count": "0",
        "author": {
            "id": 1,
            "nickname": "openmost",
            "display_name": "openmost",
            "first_name": "Ronan",
            "last_name": "HELLO",
            "description": "The creator of this super plugin"
        },
        "taxonomies": {
            "category": {
                "name": "category",
                "label": "Categories",
                "description": "",
                "object_type": [
                    "post"
                ],
                "terms": {
                    "Uncategorized": {
                        "term_id": 1,
                        "slug": "uncategorized",
                        "name": "Uncategorized",
                        "term_group": 0,
                        "term_taxonomy_id": 1,
                        "taxonomy": "category",
                        "description": "",
                        "parent": 0,
                        "count": 1,
                        "filter": "raw"
                    }
                },
                "primary_term": [] //Filled only with YoastSEO plugin
            }
        },
        "category": [
            "Uncategorized"
        ],
        "page_template": ""
    }
}

Term and taxonomy page `dataLayer` structure

{
    "event": "view_archive_category", // this event name changed for every taxonomy
    "page": {
        "type": "archive",
        "title": "Uncategorized archives - Example",
        "url": "https://example.com/blog/category/uncategorized",
        "path": "blog/category/uncategorized",
        "locale": "en_US",
        "archive_type": "taxonomy",
        "taxonomy": "category",
        "post_type": "category",
        "date": {
            "year": null,
            "month": null,
            "day": null
        }
    }
}

Pagination `dataLayer` structure

The pagination object structure is automatically added to all pages that have pagination.

Easy access to your pagination data, detect if users are using your pagination as much as you want.

{
    pagination: {
        "posts_per_page": 10,
        "post_count": 1,
        "paged": true,
        "page_number": 2,
        "max_num_pages": 5
    }
}

Authenticated user `dataLayer` structure

The user object is automatically added to all page when user is logged in.

User hashed data with SHA256 is very useful for GDPR consent with Google Ads services and user provided data.

{
    user: {
        "id": 1,
        "user_login": "openmost",
        "user_nicename": "Openmost",
        "user_email": "[email protected]",
        "user_registered": "2024-01-01 12:00:00",
        "display_name": "openmost",
        "roles": [
            "administrator"
        ],
        "sha256_id": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
        "sha256_user_login": "b2754b994c2fb636d1943ac0170f4ea192a891fb0f09cfdd100a9ffa983f053d",
        "sha256_user_email": "679d031c25e557ee84ca86ecaf333ccd8d3d1a3900ee728da83d79a819daf535"
    }
}

Plugin : Contact Form 7 `dataLayer` structure

This plugin automatically detects the use of WP Contact Form 7.
No configuration needed.

Form submitted

{
    "event": "wpcf7_submit",
    "wpcf7_form_id": 145,
    "wpcf7_form_detail": {} // See wpcf7_form_details below
}

Form with invalid fields

{
    "event": "wpcf7_invalid",
    "wpcf7_form_id": 145,
    "wpcf7_form_detail": {} // See wpcf7_form_details below
}

Form spamming detected

{
    "event": "wpcf7_spam",
    "wpcf7_form_id": 145,
    "wpcf7_form_detail": {} // See wpcf7_form_details below
}

Email sent successfully

{
    "event": "wpcf7_mail_sent",
    "wpcf7_form_id": 145,
    "wpcf7_form_detail": {} // See wpcf7_form_details below
}

Failed to send mail

{
    "event": "wpcf7_mail_failed",
    "wpcf7_form_id": 145,
    "wpcf7_form_detail": {} // See wpcf7_form_details below
}

As each event handles wpcf7_form_details, here is an example of the object values when the form is submitted with invalid fields.

"wpcf7_form_detail": {
        "contactFormId": 145,
        "pluginVersion": "6.0.3",
        "contactFormLocale": "en_US",
        "unitTag": "wpcf7-xxxxxx",
        "containerPostId": 0,
        "status": "validation_failed",
        "inputs": [
            {
                "name": "your-message",
                "value": ""
            },
            {
                "name": "your-name",
                "value": ""
            },
            // All other inputs
        ],
        "formData": {},
        "apiResponse": {
            "contact_form_id": 145,
            "status": "validation_failed",
            "message": "One or more fields contain an error. Please check and try again.",
            "invalid_fields": [
                {
                    "field": "your-name",
                    "message": "Please complete this field..",
                    "idref": "last_name",
                    "error_id": "wpcf7-f145-o1-ve-your-name"
                },
                {
                    "field": "your-first-name",
                    "message": "Please complete this field.",
                    "idref": "first_name",
                    "error_id": "wpcf7-f145-o1-ve-your-first-name"
                },
                // All other invalid fields
            ],
            "posted_data_hash": "",
            "into": "#wpcf7-f145-o1"
        }
    }

Plugin : WP Forms `dataLayer` structure

{
    event: 'wp_forms_submit',
    wp_forms_form_detail: {} // the HTML tag found in DOM
}
DomainExposuresHeadersLast Checked
a*t*a*a*d*t.com F 2026-07-23 18:58:21
f*u.se C 2026-07-23 14:10:18
o*i*i*a*g*t*e*g*a*d.com F 2026-07-21 07:25:09
s*u*h*r*i*d*s*r*e*.com 🔓 👤 F 2026-07-17 22:38:56
d*r*s*p*u*.com (WP 7.0.1) F 2026-07-15 21:35:49
s*u*e*e*f*r*a*c*.fr 👤 F 2026-07-12 18:27:36
c*x.auto D 2026-07-10 19:07:02
i*l*r*p*r*y.c*.za 🔓 F 2026-07-10 16:50:26
d*a*e*l*a*n*n*c*n*e*.com D 2026-07-10 16:13:59
w*b*s*a*d.io F 2026-07-09 14:53:26
e*g*e*s*m.com A 2026-07-09 01:34:18
c*x*u*o*n*.com D 2026-07-08 21:38:28
e*y*m*j*.com (WP 6.9.4) 👤 D 2026-07-08 15:18:53
g*i*h*r*e*o*r*a*v.com (WP 7.0) 👤 F 2026-07-08 07:38:57
s*n*d*a*c*.com F 2026-07-07 05:33:11
c*n*i*o*h*r*p*s*r*i*e*.com 👤 F 2026-07-06 01:40:05
u*w*n.fr (WP 6.9.1) D 2026-07-05 20:44:17
s*a*c*-*o*e*i*h*.com F 2026-07-05 13:03:14
1*i*p*t*h.com F 2026-07-05 09:43:10
a*i*e*h*s*r*i*e*.com (WP 7.0) F 2026-07-03 23:02:20
p*a*a*e.fr 👤 F 2026-07-03 18:21:47
c*n*r*l*i*p*t*h.com F 2026-07-02 12:45:07
f*u*i*n.com D 2026-07-02 07:17:02
f*u*e.com C 2026-07-02 07:17:02
a*f*e*p*r*.fr (WP 7.0) 👤 C 2026-06-30 10:48:11
a*f*e*o*m*t*o*.fr 👤 F 2026-06-30 10:43:00
t*e*r*g*n*l*u*t*r*u*r*.com F 2026-06-03 07:00:09
a*t*t*a*s*o*t*i*d*r.com F 2026-06-03 00:01:05
r*i*g*n*e*i*.com D 2026-05-31 10:24:37
c*x*u*o*n*.ca D 2026-05-29 00:18:34

Top 50 Plugins

Plugin Count
elementor 1,785,060
contact-form-7 1,769,562
elementor-pro 1,058,206
woocommerce 819,771
revslider 614,568
jetpack 460,717
js_composer 424,461
wp-rocket 341,988
essential-addons-for-elementor-lite 267,768
complianz-gdpr 260,954
gravityforms 258,025
google-site-kit 232,366
cookie-law-info 231,344
instagram-feed 227,249
sitepress-multilingual-cms 212,529
header-footer-elementor 209,451
google-analytics-for-wordpress 208,128
bluehost-wordpress-plugin 193,296
elementskit-lite 182,857
gutenberg 167,430
cookie-notice 151,062
litespeed-cache 142,724
gtranslate 126,629
wpforms-lite 126,201
the-events-calendar 123,516
gutenberg-core 121,761
astra-sites 115,393
popup-maker 111,022
woocommerce-payments 110,846
tablepress 102,699
honeypot 98,277
astra-addon 94,821
wp-smushit 91,887
duracelltomi-google-tag-manager 91,135
layerslider 90,368
all-in-one-seo-pack 90,325
coblocks 90,053
bb-plugin 86,911
akismet 85,544
premium-addons-for-elementor 85,431
cleantalk-spam-protect 83,524
ml-slider 83,069
mailchimp-for-wp 82,767
megamenu 81,059
woocommerce-gateway-stripe 80,305
fusion-builder 77,966
jet-engine 77,786
ewww-image-optimizer 77,287
wp-pagenavi 77,000
smart-slider-3 76,992

Top 50 Themes

Theme Count
hello-elementor 624,626
Divi 501,637
astra 419,486
flatsome 136,845
Avada 122,485
generatepress 115,808
pub 84,815
oceanwp 81,606
kadence 79,580
enfold 69,690
salient 65,787
twentyseventeen 54,790
bb-theme 53,022
betheme 52,693
twentytwentyfour 52,641
blocksy 51,410
cocoon-master 50,064
dt-the7 45,837
twentytwentyfive 45,047
h4 42,308
woodmart 41,010
neve 38,606
Avada-Child-Theme 37,195
gox 36,255
bridge 31,778
twentytwentyone 30,648
lightning 30,251
twentytwenty 29,019
swell 28,406
bricks 26,552
Impreza 26,292
Newspaper 24,354
twentytwentythree 22,363
epik-redesign 19,287
twentytwentytwo 19,003
uncode 18,731
twentysixteen 17,753
pro 17,600
sydney 16,725
storefront 16,504
Total 14,593
hello-theme-child-master 14,065
factory-templates-4 13,741
extendable 13,397
themify-ultra 13,074
hestia 12,721
yootheme 12,665
yith-wonder 12,547
porto 12,093
jupiter 11,716