I am creating a WordPress plugin, which I would like to make as customizable as possible for other developers by providing actions and filter hooks in several places.

Can having too many hooks adversely impact the end user web site performance?

link|improve this question

1  
You could/should try to benchmark your code and post your findings here. My best guess is that, unless you have a bazillion LOC where every second call is a hook, it shouldn't affect your performance at a noticeable level. – vzwick Oct 26 '11 at 10:16
feedback

1 Answer

up vote 1 down vote accepted

Having unused hooks (calls to do_action, apply_filters, etc), will not significantly decrease performance. Those are function calls with almost no overhead (other than the function call itself and checking for existence of a key in an array).

And providing action and filter hooks is the right thing to do in any code, used in Wordpress.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.