Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $categories = get_the_category( get_the_id() );
- $include = '';
- foreach ( $categories as $category )
- $include .= $category->term_id . ',';
- $include = trim($include, ',');
- wp_list_categories("style=none&include=$include&show_count=1");
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement