I recently released a plugin, WP Coda Slider, that uses shortcodes to add a jQuery slider to any post or page. I am adding an options page in the next version and I would like to include some CSS options but I don’t want the plugin to add the style choices as inline CSS. I want the choices to be dynamically added to the CSS file when it’s called.
I would also like to avoid using fopen or writing to a file for security issues.
Is something like this easy to accomplish or would I be better off just adding the style choices directly to the page?
Use
wp_register_style
andwp_enqueue_style
to add the stylesheet. DO NOT simply add a stylesheet link towp_head
. Queuing styles allows other plugins or themes to modify the stylesheet if necessary.Your stylesheet can be a .php file:
my-stylesheet.php would look like this:
Dynamically building a CSS file and then loading it adds a HUGE performance burden to what should be a very low bandwidth deal of adding a CSS file, especially if there are variables in the CSS that are going to be processed through WP. Because it is two different files being created for one page load, WP starts up twice and runs all the DB queries twice, and it’s a big mess.
If your slider is only going to be on one page, and you want the styles set dynamically, then your best bet is to add a style block to the header.
In order of performance:
dynamically created – Very fast
wp_enqueue_style – Medium
wp_enqueue_style – Very Slow
This is how I usually do it:
I’ve had difficulty with all the recommendations of this ilk – maybe I’m a bit thick, or maybe contributors have lost the common touch.
I settled on coding this in the plug-in php file:-
It seems to work. It only loads on those pages which use the plugin. It loads after the h1 tag which is fine by me. I can’t see how it could be more efficient or more clear.
….but perhaps I’m wrong – I did say I was a bit thick.
Update since WordPress 3.3
There is a function called wp_add_inline_style which can be used to dynamically add styles based on theme/plugin options. This can be used to add a small css file in the head which should be fast and efficient.