WordPress Theme Detector

Want to know what WordPress theme a website is using? Did you see a nice website and want to know how it was constructed? Just enter the website URL and our WordPress theme detector will do the rest.

Share on Social Media:

Identify what WordPress theme and plug-ins a website is using. Simply enter the site's URL (including “https://”) and click “Get Info.” 

The scan could take a few minutes, please be patient.

What are WordPress Themes?

WordPress themes are sets of files that determine the visual appearance of a WordPress website. They include templates, stylesheets, and other necessary components to define the layout and design of a site. Themes allow users to change the look of their website without altering the underlying content or functionality.

Premium WordPress themes are paid themes that offer additional features, customization options, and support compared to free themes. These themes are often developed by professional designers and developers, providing a higher level of quality, design, and sometimes exclusive functionalities.

What are WordPress Plugins?

WordPress plugins are pieces of software that can be added to a WordPress website to extend its functionality. They enable users to add new features, enhance existing ones, or modify the behavior of the site. Plugins can cover a wide range of purposes, from SEO optimization to e-commerce and security.

How to Detect Themes Used by  a WordPress Site?

To identify the theme used on a WordPress site, you can inspect the HTML source code or use online tools and browser extensions designed for theme detection. Look for comments in the code, check the theme's stylesheet details, or use online tools, like this one, that analyze the site and provide information about its theme.

For example:

  • Theme Stylesheet Link:
    Check the HTML head section for a link to the theme's stylesheet. Look for a line similar to:
    link rel='stylesheet' id='bridge-default-style-css' href='https://www.example.com/wp-content/themes/bridge/style.css?ver=6.4.2' type='text/css' media='all' /
    In this example, "bridge" indicates the theme being used.

How to Detect Plugins Used by a WordPress Site?

Determining the plugins used on a WordPress site can be done by examining the source code, looking at the HTML structure, or using online tools and browser extensions. Check for script and stylesheet references, search for plugin-specific identifiers that can provide insights into the plugins powering a particular website. 

Examples:

  • Script and Stylesheet References:
    Look for script and stylesheet references in the HTML source code. Some plugins load their resources directly, revealing their presence. For example:
    link rel='stylesheet' id='tablepress-default-css'  href='https://www.example.com/wp-content/plugins/tablepress/css/default.min.css?ver=1.8.1' type='text/css' media='all' /
    script type="0bb875bab4af755b45211eb1-text/javascript" src='https://www.example.com/wp-content/plugins/advanced-ads/public/assets/js/advanced.min.js?ver=1.46.0'
    Here, “tablepress" and “advanced-ads”  indicate the names of the plugins.
  • HTML Class or ID Attributes:
    Some plugins add specific classes or IDs to HTML elements. Inspect the HTML structure to find elements like:
    div class="slick-slider-container desktop"
  • Meta Tags or Comments:
    Check for meta tags or comments that plugins might insert into the HTML. This could include information like:
    !-- This site is converting visitors into subscribers and customers with OptinMonster - https://optinmonster.com --
    !-- This site is optimized with the Yoast SEO plugin v21.7 - https://yoast.com/wordpress/plugins/seo/ --
    !-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me --

 

Keep in mind that theme and plugin developers may take steps to obfuscate or hide this information for various reasons, including security. Additionally, some plugins and themes may not leave obvious traces in the HTML and CSS, making detection more challenging. Using dedicated tools or online services designed for theme and plugin detection can often provide more accurate results.