groups

name language licence
Wordpress Categories Nav PHP BSD
Make header image clickable PHP BSD
Optimal ad display PHP BSD
Tweet This PHP BSD
Display a Pages SubMenu in your Sidebar PHP BSD
Display WordPress Tags PHP BSD
Display Admin Section PHP BSD
Display Recent Comments PHP BSD

< 1 2 3 4 5 6 7 8 9 >



language: PHP
licence: BSD

Wordpress Categories Nav

options: view full snippetsend to code collector
<div class="nav">
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
</div>
 
<div class="nav">
<ul>
<?php
$variable = wp_list_categories('echo=0&orderby=name&show_count=1&child_of=1&feed=RSS&title_li=');
$variable = str_replace(array(') ('), '</span> <span class="counts">', $variable);
$variable = str_replace(array('('), '<span>', $variable);
$variable = str_replace(array(')'), '</span>', $variable);
echo $variable;
?>
	
(Continues...)