Browse all tools
developer tools

How to Find What WordPress Theme a Website Is Using (5 Methods)

How to Find What WordPress Theme a Website Is Using (5 Methods)
Share this article

Frequently Asked Questions

Is there a free WordPress theme detector?

Yes. The Pixellize WordPress Theme Detector is free, runs in your browser, requires no signup, and returns the theme name, version, parent theme (if any), page builder, and a sample of detected plugins. Most other detectors also have a free tier.

Why does the theme detector return nothing for some sites?

Three common reasons: Cloudflare or similar service blocks the detector user agent, a WordPress security plugin (like WPHide) rewrote the standard /wp-content/ paths, or the site is a headless WordPress setup where the front-end is rendered by a different framework.

How do I find the WordPress theme manually without a detector?

Open the site, press F12 to open dev tools, find any CSS file path that contains /wp-content/themes/<slug>/. That slug is the theme. Confirm by fetching /wp-content/themes/<slug>/style.css and reading the theme header.

Can I detect a child theme separately from its parent?

Yes. Child themes declare their parent in style.css with a Template: line. Sites running a child theme load CSS from both /wp-content/themes/parent/ and /wp-content/themes/child/. Inspect the child style.css to identify both.

Can I see what plugins a WordPress site uses?

Partially. Plugins that ship CSS or JavaScript leave /wp-content/plugins/<slug>/ paths in the page source. Plugins that operate only on the server side (backup plugins, admin-only tools) are invisible from outside. A detector typically surfaces 30-70% of the active plugins.

Is it legal to detect and copy a WordPress theme?

Detecting is fine, it is public information. Copying depends on the license. Most themes are GPL-licensed, which permits copying and modification, but premium themes typically also require a paid license for support and updates. Always check the License line in the theme style.css header and buy a license for premium themes.

Does this method work for non-WordPress sites?

No. The methods covered here are WordPress-specific. For Shopify use the Shopify Theme Detector. For Webflow, Squarespace, Wix, and other builders, there are platform-specific detectors. The general approach (inspect source for platform signatures) is the same.

Written by

Founder and CEO of Pixellize.io, building AI-powered web tools and digital products with a focus on user experience and automation. M.Sc. Zoology, working at the intersection of technology, data analytics, and life sciences.

Scroll to Top