Created
July 16, 2015 00:01
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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