Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $categories = get_the_category();
- $separator = ' ';
- $output = '';
- if($categories){
- foreach($categories as $category) {
- $output .= '<li><i class="icon-folder-close"></i><a href="'.get_category_link( $category->term_id ).'" title="' . esc_attr( sprintf( __( "View all posts in %s" ), $category->name ) ) . '">'.$category->cat_name.'</a><li>'.$separator;
- }
- echo trim($output, $separator);
- }
Advertisement
Add Comment
Please, Sign In to add comment