hi
Been fiddling with wordpress today (blix template, in sidebar.php)
Ok, I have a couple of categories setup so that the links go to "/category/%category%".
What I want to do is display a digg sidebar ONLY on the page called "technology" (at /category/technology)
So here's what I've got so far that doesn't work with displaying only on the technology page:
<?php if (is_page("technology")) { ?>
<h2><em><a href=http://www.digg.com/users/treelovinhippie>Dugg Stories</a></em></h2>
<ul class="links">
<script language="JavaScript" src="http://digg.com/jsdig/15/treelovinhippie" type="text/javascript"></script>
</ul>
<h2><em>Calendar</em></h2>
<?php get_calendar() ?>
<?php if (!is_page("archives")) { ?>
<h2><em>Posts by Month</em></h2>
<ul class="months">
<?php get_archives('monthly','','','<li>','</li>',''); ?>
</ul>
<?php } ?>
<h2><em>Posts by Category</em></h2>
<ul class="categories">
<?php wp_list_cats('sort_column=name&hide_empty=0'); ?>
</ul>
<?php } ?>
cheers
nathan