Ok, I thought I had it nailed down, but recently while checking out the pages with firebug I noticed that the CSS isn't actually being loaded like I thought it would be.
So perhaps I'm missing this somewhere? Here's my current code-call for it.
`
function zenTwitterToCSS() {
$css = USER_PLUGIN_FOLDER . '/zenTwitter/zenTwitter.css';
$link_css = '';
return $link_css;
unset($css,$link_css);
}
`
Edit:
Nevermind, another tired night and missed an obvious problem, the lack of use of echo on the variable.
Comments