How to Find Out What WordPress Theme a Website Is Using (5 Methods)
You are browsing a beautifully designed website and the thought hits you: “What WordPress theme is that?” Maybe you are planning a redesign, evaluating options for a client, or simply curious about the tech behind a site you admire. Whatever the reason, identifying a WordPress theme does not require any technical expertise.
In this guide, we will show you 5 reliable methods to find out what WordPress theme any website is using. From instant online tools to manual source code inspection, you will have multiple ways to get the answer in minutes.
5 Ways to Find What WordPress Theme a Website Is Using
Each method below has different strengths. The first method is the fastest and easiest, while the later methods give you more control and deeper information.
Method 1: Use a WordPress Theme Detector Tool (Easiest)
The fastest way to identify a WordPress theme is to use a dedicated theme detector tool. These tools scan a site’s source code automatically and return the theme name, version, author, and download link within seconds.
Our free WordPress Theme Detector works like this:
- Enter the website URL into the detector form.
- Click Detect and wait a few seconds for the scan to complete.
- View the results including the theme name, version, author, and a link to download or purchase the theme.
The detector also identifies child themes. If a site uses a child theme, you will see both the child and parent theme details. It can even detect some of the WordPress plugins running on the site.
This method works for any publicly accessible WordPress site and requires no technical knowledge. It is the recommended starting point for most people.
Method 2: Check the Page Source Code
If you want to identify a theme manually, the page source code is the most direct approach. Every WordPress site loads theme files from a predictable directory path, and you can find it in under a minute.
Here is how to do it:
- Navigate to the website you want to inspect.
- Right-click anywhere on the page and select View Page Source (or press Ctrl+U on Windows / Cmd+U on Mac).
- Press Ctrl+F (or Cmd+F) to open the search bar.
- Search for
wp-content/themes/ - The folder name that appears after
/themes/is the active theme. For example, if you seewp-content/themes/flavor/style.css, the site is using a theme called “Flavor.”
This method is quick and works in any browser. The only limitation is that it gives you the theme’s folder name, which may differ from the theme’s display name if the developer renamed the folder after installation.
Method 3: Read the Theme’s style.css File
Every WordPress theme is required to have a style.css file that contains a comment header with metadata about the theme. You can access this file directly in your browser to get detailed theme information.
Once you know the theme folder name from Method 2, visit this URL in your browser:
https://example.com/wp-content/themes/theme-name/style.css
At the top of the file, you will find a header block like this:
/*
Theme Name: flavor flavor
Theme URI: https://flavor flavor.com
Author: AuthorName
Author URI: https://authorsite.com
Description: A lightweight WordPress theme
Version: 2.1.0
*/
This gives you the official theme name, author, version number, description, and often a link to where you can download or purchase it. Some sites block direct access to this file for security reasons. If you get a 403 Forbidden error, try one of the other methods instead.
Method 4: Use Browser Developer Tools
Browser developer tools give you a more interactive way to explore a site’s theme files. This method is especially useful when you want to inspect specific CSS rules or see which theme template is generating a particular section of the page.
Follow these steps:
- Right-click on any element on the page and select Inspect (or press F12).
- Click the Sources tab (in Chrome) or Debugger tab (in Firefox).
- In the file tree, expand the site’s domain and navigate to
wp-content/themes/. - You will see the theme folder name. Click into it to view the theme’s CSS and JavaScript files.
Alternatively, you can click the Network tab, reload the page, and filter by “CSS” to see all stylesheet files being loaded. Look for file paths containing wp-content/themes/ to identify the active theme.
Developer tools are also useful for checking whether a site uses a page builder like Elementor, as you can spot Elementor-specific CSS classes and scripts in the loaded resources.
Method 5: Use a Technology Detection Extension
Browser extensions like Wappalyzer and BuiltWith can identify the technology stack behind any website, including the WordPress theme, plugins, hosting provider, analytics tools, and more.
Here is how to use them:
- Install the Wappalyzer or BuiltWith extension from the Chrome Web Store or Firefox Add-ons.
- Navigate to the website you want to analyze.
- Click the extension icon in your browser toolbar.
- The extension will display a list of technologies detected on the site, including the CMS, theme, and plugins.
These extensions are convenient if you regularly research websites. They run automatically in the background and display a badge showing the technologies detected on every site you visit. The free versions of both tools provide enough information for basic theme detection.
What Information Can a Theme Detector Reveal?
A WordPress theme detector can provide several useful details about a website’s setup:
- Theme name and version. The exact theme being used and its current version number. This helps you find the same theme in a marketplace or directory.
- Theme author. The developer or company that created the theme, along with a link to their website.
- Parent theme. If the site uses a child theme, the detector will show the parent theme that provides the base functionality.
- Active plugins. Many detectors can identify plugins that load frontend assets (CSS and JavaScript files), such as contact form plugins, SEO plugins, and page builders.
- Download or purchase link. A direct link to where you can get the theme yourself.
Keep in mind that theme detectors read publicly available source code. They cannot reveal premium plugin license keys, admin-only settings, or any private configuration data.
What to Do After You Identify a WordPress Theme
Once you know which theme powers a website you admire, here is what to do next:
- Check ratings and reviews. Visit the theme’s page on WordPress.org or the author’s site to see what other users think. Pay attention to the update frequency and support quality.
- Test the live demo. Most premium themes offer a demo you can preview on both desktop and mobile. Make sure the design works for your use case before purchasing.
- Compare alternatives. The detected theme might not be the best fit for your project. Browse our WordPress themes collection or check out specialized roundups like our fastest WordPress themes guide for performance-focused options.
- Check plugin compatibility. Make sure the theme supports the plugins you need. If you use Elementor, WooCommerce, or other popular tools, verify compatibility before committing.
- Test performance. A beautiful theme that loads slowly will hurt your SEO rankings and conversions. Run the theme’s demo through Google PageSpeed Insights to check its Core Web Vitals scores.
Limitations of WordPress Theme Detection
While theme detection works reliably for most WordPress sites, there are scenarios where it falls short:
- Custom-built themes. If a site uses a theme developed from scratch and not available in any public directory, no detection tool can match it to a known product. You will still see the folder name, but there will be no download link.
- Renamed theme folders. Some developers rename the theme directory after installation for branding or security purposes. The detector will return the custom folder name instead of the original theme name.
- Headless WordPress setups. Sites that use WordPress as a headless CMS with a decoupled frontend (built in React, Next.js, or similar frameworks) may not expose theme information in the HTML output.
- Non-WordPress sites. Theme detectors only work with WordPress. Sites built with Wix, Squarespace, Shopify, or other platforms will not return any results.
- Heavy customization. A site might use a well-known theme as its base but look completely different due to extensive CSS modifications, page builder layouts, and custom templates. The detected theme is the starting point, not an exact replica of the design you see.
In these edge cases, combining multiple methods from this guide will give you the best results. Even when automated detection fails, the manual source code approach can often reveal useful clues.
Frequently Asked Questions
Is the WordPress Theme Detector free?
Yes. Our WordPress Theme Detector is completely free to use. Enter any URL and get instant results with no signup required.
Can I find out what theme a WordPress site is using without any tools?
Yes. You can view the page source code (Ctrl+U or Cmd+U) and search for wp-content/themes/ to find the theme folder name. Then visit the theme’s style.css file to get the full theme name, author, and version.
What if the theme detector cannot identify the theme?
This usually means the site uses a custom-built theme, a renamed theme folder, or a headless WordPress setup. In these cases, try checking the source code manually or using browser developer tools to find clues in the CSS and JavaScript file paths.
Can a theme detector show what plugins a site is using?
Yes. Most theme detectors, including ours, can identify WordPress plugins that load CSS or JavaScript files on the frontend. However, plugins that only run in the admin area or do not load frontend assets will not be detected.
How do I know if a website is built with WordPress?
Look for /wp-content/ in the page source code, check if /wp-login.php exists on the domain, or look for a WordPress meta generator tag. You can also enter the URL into our theme detector. If it returns results, the site runs WordPress.
What is the difference between a parent theme and a child theme?
A parent theme is the original theme with all the core files and functionality. A child theme inherits the parent’s design and features but lets you customize without modifying the original files. Our detector identifies both. You can create your own child theme using our free Child Theme Generator.