| name | language | licence |
|---|---|---|
| Current Page Item | PHP | BSD |
| DISPLAY THE FIRST IMAGE ATTACHMENT OF A WORDPRESS POST | PHP | BSD |
| WORDPRESS TEMPLATE URL | PHP | BSD |
| WORDPRESS BLOG URL | PHP | BSD |
| WORDPRESS INCLUDE FILE | PHP | BSD |
| WORDPRESS GET TITLE OR ALT. TITLE | PHP | BSD |
| Wordpress Categories Nav | PHP | BSD |
| Make header image clickable | PHP | BSD |
< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >
language: PHP
licence: BSD
Wordpress Categories Nav
options: view full snippet • send 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;
?>



library
buttons (3)
wp (93)