Advertisement
SergeyBiryukov

Sergey Biryukov

Oct 19th, 2010
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2. $categories = get_the_category( get_the_id() );
  3. $include = '';
  4. foreach ( $categories as $category )
  5.         $include .= $category->term_id . ',';
  6. $include = trim($include, ',');
  7. wp_list_categories("style=none&include=$include&show_count=1");
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement