Quote:
Originally Posted by RightHandMan
Im looking for a "webcam" wordpress plugin that will allow me to display an image as a widget under its own category on the sidebar...
Anyone know of a decent one???
|
No plugin required. Just add something like this into your sidebar code:
PHP Code:
<?php
if (is_category('2')) {
echo "your livecam IFRAME code for category #2";
} elseif (is_category('3')) {
echo "your livecam IFRAME code for category #3";
} elseif (is_category('8')) {
echo "your livecam IFRAME code for category #8";
}
?>
It's easy as "abc".