Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pablocattaneo/21157133b5dad8c69281 to your computer and use it in GitHub Desktop.
Save pablocattaneo/21157133b5dad8c69281 to your computer and use it in GitHub Desktop.
Returns a list of subcategories in the current categegory (Use this code in the category template)
<?php
/* Returns a list of subcategories in the current categegory (Use this code in the category template)*/
if ( is_category() ) {
$current_cat = get_query_var('cat'); ?>
<ul>
<?php wp_list_categories('&title_li=&show_count=1&child_of='.$current_cat); ?>
</ul>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment