View Single Post
Old 04-18-2007, 05:48 PM  
k0nr4d
Confirmed User
 
k0nr4d's Avatar
 
Industry Role:
Join Date: Aug 2006
Location: Poland
Posts: 9,231
Im not sure how wordpress passes in its categories but you could put something along the lines of this in your template
Code:
<?
$category = $_GET[category]; //not sure about this part, might need to explode(); the url and use the last value in the array, as i said i dont know how this is put together in wordpress exactly. 
if($category == 'anal') { echo "html code for anal banner"; } 
elseif($category == 'ebony') { echo "html code for ebony"; } 
else { echo "no matches, generic banner html"; }
?>
k0nr4d is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote