
How time is spent on a compex page
The two areas where performance problems with WordPress plugins are most common are custom filters/actions and database queries. WP-Profile is a plugin that helps you find such problems.
Actions and filters
WordPress has an intricate system of actions and filters which is used all over the place: to convert : ) into
, to make links clickable and to handle the login procedure are just some examples.
Every action and filter is a hook that allows plugins to call custom functions and easily change or override default behavior. That is very useful.
It also makes it easy to really ruin performance as some common filters are called a hundred times or more for more complex pages, making small inefficiencies add up really quickly. (more…)



Consider 