WP Rocket Detector
Check any public website to see whether it uses WP Rocket.
Public signal scan
Fast lookup
No signup required
Scan a website
Enter a URL and Stackcrawler will inspect public technology signals.
Websites using WP Rocket
Browse real website examples detected with WP Rocket.
View examplesMore Caching detectors
Compare related tools and identify the wider stack behind a website.
Browse detectorsWhat we check
Stackcrawler looks for public page markers, scripts, platform fingerprints, metadata, and other visible implementation clues.
How can you check if a website uses WP Rocket?
Detecting if a website uses WP Rocket, a popular caching plugin for WordPress, involves looking for specific markers in the website’s source code and behavior.
Here’s a step-by-step guide on how to do it:
- Open the Page Source: Right-click on the webpage and select “View Page Source” or press
Ctrl+U(Windows) orCmd+Option+U(Mac) to open the page’s source code. - Check for WP Rocket Footer Marker: Scroll to the bottom of the page source code to look for a comment indicating WP Rocket. You might see a line that says:
<!-- Cached by WP Rocket --> - Look for WP Rocket-Specific File Paths: Use
Ctrl+F(Windows) orCmd+F(Mac) to open the search function and look for the following path:wp-content/plugins/wp-rocket/: This path indicates that the WP Rocket plugin is installed on the website.
- Check for Page Load Speed: WP Rocket improves website load speed. Use an online speed test tool (like Google PageSpeed Insights) to analyze the site. If the speeds are significantly fast, it could be using WP Rocket or a similar optimization tool.
- Inspect Network Requests: Open the browser developer tools (usually by pressing
F12or right-clicking and selecting “Inspect”). Go to the “Network” tab and reload the page. Look for requests that referencewp-rocketin the file names, such aswp-rocket.min.js. - Check for Rocket Loader: If the website uses WP Rocket, it might include a lazy loading feature for images and iframes. Look for the
data-lazy-srcattribute in image tags. Example:<img class="lazyload" data-lazy-src="image-url.jpg" >. - Look for Prefetched Links: WP Rocket can add prefetching capabilities to improve navigation speed. Check the page source for
<link rel="prefetch">tags that could be added by WP Rocket.