How to speed up a wordpress function with multiple loops?

Is there a speed penalty for making a simple plugin vs. a theme function in WordPress?

  • Meaning, for a simple one-off task, is "one more plugin" going to incur a lot of overhead?

  • Answer:

    No, there is really no speed difference. It's better to make things into simple plugins, because that way you can easily turn them on and off, you can have them apply to multi-site installs, theme upgrades won't kill them, etc, etc. While I prefer to make each thing a separate plugin, I know many people that prefer to have one "site" plugin where they simply drop in all the little minor changes that they want to make. Your call as to how you prefer to do it.

Samuel Wood at Quora Visit the source

Was this solution helpful to you?

Other answers

Architecturally, there should be no difference. Wordpress themes and plugins are both simply PHP files. In both cases they are executed via a variation of an include or require call when PHP processes the page. Based on that, I don't believe there would be any difference. I would strongly advocate plugins over themes as theme upgrades will break your feature. It also makes testing much easier as your simple task grows in the future. It is unfortunate that themes are not simply a presentation layer as the name implies. Think of them as a fully custom web application without a common control panel interface. I have some themes (Privateer would be one of those) that are more complex to configure than most plugins. This is commonly overlooked from the site security perspective.

Leonid S. Knyshov

I think the best answer is maybe. While minor there has to be some overhead in WPdeciding if and when a plugin should be well, um, plugged in. Then there's the issue of the plugin itself. For example, maybe it has its own bit of CSS that might have to get jammed into a page somewhere (as opposed to being in the main stylesheet.). That bit of CSS is less than ideal. Again, minor but none the less it's not zero. Then if for some reason that plugin is reaching further back into some API then that too can cause a delay. Mind you, that might not follow under "simple" but then again, maybe it does. Yes, such API usage would show up if it were in the theme, but as mentioned, this on top of the plugin processing delay could add up a bit and effect rendering. Probably not, but maybe - at least a tiny bit. I would say that for simple stuff using functions might be a good compromise. You'll have the flexibility to move functions from one theme/site to the next. But you're not always hardcoding right into the theme - except for the line of code that calls the function. Or something like that :)

Mark Simchock

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.