79748535

Date: 2025-08-27 23:34:10
Score: 3
Natty:
Report link

I made a solution that is entirely contained in a WordPress plugin and doesn't rely on Xdebug xhprof or any PHP extension. Please give the WordPress Hook Profiler Plugin a try. There's still room for improvement but the core functionality is there:

Show which plugins take the most execution time:

enter image description here

Show which individual hooks of the plugins take the most time:

Individual hook times

It's implemented by running through every hook and replacing them with a new callback that wraps the original call back to record the time it takes to execute. Also a mu-plugin adds some hooks to time the loading of the plugin files themselves. All-in-all it will show you that, that page builder you using is probably what's slowing everything down.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please give
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: David Stone