(misspelled enqueue in title - oops)
I've installed WP3, and set it up to use directories for testing my plugins with it. Everything works fine except for one small portion.
PHP Code:
wp_register_style('myStyleSheets', $myStyleUrl);
wp_enqueue_style( 'myStyleSheets');
this outputs as expected:
HTML Code:
<link rel="stylesheet" id="myStyleSheets-css" href="http://127.0.0.1/wpbetamu/eshop/files/eshop_files/eshop.css?ver=3.0" type="text/css" media="all">
But the css is not being parsed. However it will if I remove the ?ver=3.0 from the end.
So I tried this:
PHP Code:
wp_register_style('myStyleSheets', $myStyleUrl,'','','');
and can't stop it being added to the end.(tried a few variants of that as well).
So is this a problem for me as I'm testing locally, or is this a multi site issue?