if (function_exists(’wassup_sidebar’)) {
wassup_sidebar(”);
}
I ask, what is missing from the above code? (And why is it so hard for some plug-in designers to include necessary information?)
if (function_exists(’wassup_sidebar’)) {
wassup_sidebar(”);
}
I ask, what is missing from the above code? (And why is it so hard for some plug-in designers to include necessary information?)
The first wrong thing is: you have "fancy" quotes in the code and they will not work. Retype them to have straight ones.
’wassup_sidebar’ vs. 'wassup_sidebar'
The function works only if you give every parameters like this:
if (function_exists('wassup_sidebar')){
wassup_sidebar('','','<h2>','</h2>','Online Visitors','links',20,1,5,1,5,1,10,1,10);
}
as I describe it in the WassUp page ( http://www.wpwp.org/download )
However it's better using the sidebar widget I wrote, but your worpdress theme must be widget ready ( http://automattic.com/code/widgets/themes/ )
This topic has been closed to new replies.