11. Categories Listing
SCREENSHOTTHE CODE
[v_cats]
OR
[v_cats tax=""]
PARAMS
- tax – string – name of taxonomy. Default is ‘category‘. Other value can be ‘post_tag‘ or any custom taxonomy
NOTES
- to change number of columns, use this custom css
.cat-listing li{width: 25%}
- to change HTML output, use these filters
- to change group heading text
apply_filter('videopro_v_cats_heading', $html, $alpha);
- to change <ul> opening tag
apply_filter('videopro_v_cats_before_listing, $html, $term);
- to change <li> tag
apply_filter('videopro_v_cats_item', $html, $term, $tax);
- to change </ul> closing tag
apply_filter('videopro_v_cats_after_listing', $html, $term);
- to change list of characters, use this filter
apply_filter('videopro_v_cats_characters', $characters);