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???
Anyone know of a decent one???
<?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";
}
?>
Comment