This is a WORK IN PROGRESS intended for fleshing out and feedback
It's very common for people to be unhappy with how a WordPress plugin adds front end resources to their site. If a plugin needs CSS, the plugin will add a <link>
element to that CSS. If the plugin needs JavaScript, it will add a <script>
to that JavaScript.
Plugins do this because it works. It's damn important for a WordPress plugin to work, even in adverse conditions. They rightfully want good ratings and little customer support.
But this comes at the cost of additional HTTP requests. In optimizing front end performance of a site, reducing the number of HTTP requests is a huge thing. Front end developers want to decide and control how front end resources are being handled, and WordPress plugins don't typically make this easy on them.
Here's an approach for plugin developers that can make everybody happy. The plugin still "just works" as well as it did before. But for people wanting to avoid those requests and deal with assets themselves, it allows that.
- Default to including it in the
wp_head
hook. - Have a setting to not include it there, then provide the required CSS. Perhaps in a
<textarea>
for easy selecting and copy-and-pasting for the developer to put it somewhere in their own project.
- Default to including in the
wp_footer
hook. - Have a setting to not include it there, then provide the required JavaScript. Perhaps in a
<textarea>
for easy selecting and copy-and-pasting for the developer to put it somewhere in their own project.
- Is it possible to not use images? If so, cool, do that.
- Can you use SVG? If so, cool, use inline
<svg>
where you can (e.g. you can use inline Data URI SVG in add_menu_page). - If you need raster images (JPG, PNG, GIF), can you data URI them right into the code?
- Always optimize images with tools like SVGO for SVG or ImageOptim for raster images.
There are plugins out there that concatinate assets for you. (examples: MinQueue and W3 Total Cache). I'm sure they do a pretty good job. But this shouldn't be the final answer. This isn't something automation is the perfect solution for in every case. What if they get the ordering wrong? What if you really need a particular as asset to load in a particular place? What happens on pages with a one-off script? Shouldn't it continue to use the presumably-well-cached script used on most other pages rather than make a new one?
A performance-focused developer can make the best decisions when it comes to what assets should be concatinated (and which shouldn't) for the best use of caching throughout the site.
- Is all this factually correct?
- Is there anything that can be explained better? Is the terminology correct?
- Can we make an example plugin that demonstrates these concepts?
@NateWr Oh got it. I guess that makes sense. But if you were going to be extracting various styles or scripts and bringing them into your own process you might want a list of all scripts or styles that are loaded on any page. But that gets complicated quick I guess. I wonder if there is a way to quickly get any scripts or styles that are enqueued on the front-end from the back-end?
Random thought. Maybe the thing to do is have users dequeue scripts and styles from the front-end, and then have a list of Dequeued scripts on the back-end. So if I select a couple and remove them, I can hop over to a list in the back-end and click a "View Asset" link for each. What do you think? The user flow gets a bit confused I think, but for me that list with quick links would be essential.
I'm certainly not an expert plugin developer, but I can try to help out if you need it. Maybe I'll dig around sometime soon and see if I can make that happen.