Is there any way to measure the time it takes for plugins to load and in which pages they load (without figuring out the entire code)?
In addition, I would like to find out which plugins load files in which pages and find the ones that load on irrelevant ones.
Leave a Reply
You must be logged in to post a comment.
Yes, Plugins effect site loading time.
There are many poorly written Plugins that make unnecessary database queries and load numerous files to the page.
The extra JavaScript and CSS files are not that big of deal unless you are using numerous plugins. I have worked on large sites that had 30 or 40 active plugins and the server would crash during any high traffic periods so it can be an issue.
To see what extra files are being loaded you can simply view source or use the net tab on Firebug.
Another good way to find external files loaded by plugins is to use W3 Total Cache’s minify help wizard.
The wizard scans your theme and plugins and recommends the ones to combine and minify and for what page to load them on.
To monitor Plugin database queries and cpu time you can add the following code to the bottom of your footer.php:
This will allow you to view the source of each page and see how many queries are being made and how long it takes to make them.
Ex:
Of course this won’t tell you what Plugin is responsible for the queries but allows you to do testing while disabling and activating different combinations.
You could always concatenate them all into a new plugin and activate that instead, but you’re honestly wasting your time. The maintainability from keeping them separate dwarves the performance benefit…
That said, be aware that using tons of plugins does affect your site’s performance… You can easily measure that using benchmarking tools such as siege (http://www.joedog.org/index/siege-home).
Also, never lose sight that WP itself is a sluggish resource hog. You can micro-optimize a few milliseconds out of page load times, but considering any verbatim WP loads in 100ms or more to start with, rather than the more typical 10-40ms for apps written using a good php framework, I personally wouldn’t bother.
Debug Queries plugin can also help in this task.
If you want to be even more specific, and don’t mind dealing with some code, you can use Plugin Test Drive (separates the tested plugins) and add the following function just before and after each plugin file is called:
A simple quick way of find out about which plugin is affecting your site load time would be to use the P3 Plugin Performance Profiler by GoDaddy. You may have to run the plugin several times and over several days to get a pretty accurate picture, but overall its simple and convenient. Here is the link to the plugin:
https://wordpress.org/plugins/p3-profiler/