View Single Post
Old 01-14-2008, 07:04 PM  
just a punk
So fuckin' bored
 
just a punk's Avatar
 
Industry Role:
Join Date: Jun 2003
Posts: 32,386
Quote:
Originally Posted by RightHandMan View Post
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".
__________________
Obey the Cowgod

Last edited by just a punk; 01-14-2008 at 07:06 PM..
just a punk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote