I am writing a Wordpress shortcodes plugin for a client and admittedly don't know much about load times. Which would load faster, one enqueued script with a size of 300kb or 10 separate enqueued scripts with a total size of 150kb (about 30kb each)?

So another way to ask this question would be, 'does it take a noticeable amount of time to enqueue a script in Wordpress?'

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Enqueuing is not the bottleneck, the HTTP overhead is it. Combine and minify those scripts. Make sure they are compressed.

link|improve this answer
Isn't the whole point of enqueueing to make it so there is only 1 HTTP request made after all of the scripts are enqueued? Again, this is definitely not my area of expertise. Thanks for your help. – Sam Jan 19 at 16:38
Concatenation is only possible if you use wp_enqueue_script() but it is not the default behavior. Some plugins (like W3 Total Cache) can do that. Enqueueing exists to manage dependencies and to allow plugins to filter the script URIs. – toscho Jan 19 at 19:37
So if I used wp_enqueue_script() to enqueue 10 scripts, would it load as one single HTTP request or 10 separate requests? Or would it only load as one single HTTP request if I had W3 Total Cache enabled? Thanks again. – Sam Jan 19 at 20:52
By default: 10 separate requests. – toscho Jan 19 at 21:06
feedback

Your Answer

 
or
required, but never shown

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