A custom category walker should do what you need.
class My_Cat_Walker extends Walker_Category {
function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) {
extract($args);
$cat_name = esc_attr( $category->name );
$cat_name = apply_filters( 'list_cats', $cat_name, $category );
$output .= '<li>'.$cat_name.'</li>';
}
}
$args = array(
'orderby' => 'name',
'show_count' => 0,
'hierarchical' => 1,
'taxonomy' => $tax,
'title_li' => '',
'data-filter' => '',
'hide_empty' => false,
'walker' => new My_Cat_Walker
);
echo '<ul>';
wp_list_categories($args);
echo '</ul>';
If you look at the source for the parent walker, you will notice that the start_el()
method does a lot more work that this one does. I don’t know how complex you need this walker to be. What you see above is a very bare bones version.
Related Posts:
- Make parent categories not selectable
- Reflect nested categories in appearance > menus
- How to show posts of an columnized different categories on the same line or row?
- Echo one category as title when post has multiple categories?
- I use same slug name for category and page
- On Category page, How can I get the category ID?
- How to order categories in Woocommerce that are spread over multiple pages? [closed]
- Order Taxonomy Term by date created
- How do I display the posts from a custom post type on a category.php page?
- Let visitors post comments on category page
- category_description() shows raw html after version 3.x?
- Automatically add product_categories to nav_menu
- Add Product categories to WordPress menu without losing hierarchy
- Make parent category not selectable when it has child categories
- Can I use get_adjacent_post for specific categories?
- How to change number of items on add new pluggins page from backend?
- Accessing WordPress MySQL Database via Data Connection in Visual Studio 2010 using C#
- How to display posts under a specific subcategory of a given category
- Ignoring a category in WP_Query still shows the links in next_post_link()?
- Implementing a tricky wordpress menu (nested categories + thumbnails)
- products nested by subcategories in a current category archive
- get_the_category() always returns empty array
- Get current_parent_category in a loop or Cat ancestor- big problem
- Show number of articles in menu
- Can you pre-check wordpress categories?
- If posts category is “cars”, display image
- Is having thousands of unique categories a concern?
- How to prevent parent being choosen in wp_dropdown_categories
- query in category.php repeats itself
- How can I add more “filters” to my products? (Categories, attributes, etc.)
- Remove product category placeholder image (Woocomerce)
- How to “group” (categorize) the Pages together?
- Is There a Difference Between Taxonomies and Categories?
- Style category link depending on category ID
- Custom Walker for wp_list_categories
- Related Tags not in category
- Output category color option to each li item
- How do I display only two categories Instead of displaying all categories
- Hooking to walker_nav_menu_start_el to insert list of subpages
- Show the latest post from child category?
- How do I add a tag slug to a category URL to filter posts?
- How to show a list of only categories (exclude subcategories)
- How to list categories in reverse alphabetical order?
- Dropdown menu for subcategories
- How to add categories on a page [duplicate]
- Adding custom ID field to the categories
- How to hide some categories in dashboard
- Getting the first parent of a hierarchical term
- why category__and and category__in wont work togather?
- Natural sort / ordering wp_dropdown_categories
- Make wp_dropdown_categories into a variable that persists until changed?
- show category in woocommerce
- Best way to categorize/populate a magazine style layout
- Mass Update User Profile Checkbox Options
- Category sticky latest
- How can I exclude a category from the main loop with the category name & not ID?
- Setting the Primary Category for a Post Based on Context
- Show the number of the post
- Automatically adding tags and categories into Post Excerpt for searching
- How to list posts from a sub-category that is listed in a parent category (more details below)?
- How can i add service category here? [duplicate]
- Allow Custom Role to edit a custom post type category
- How to check parent & child category
- Meta Query | Compare category name and meta value
- How to filter tags by category?
- How to prevent tag “iframe” from being deleted from the heading description of rubric?
- When creating a new product, auto assign it to all custom taxonomy woocommerce
- How Can I Display the Category Description in a Theme with no Category.php or Archive.php?
- How do I merge WooCommerce categories with the same name?
- Custom get_the_password_form
- How can I make a category function as a page?
- How to add custom option to wp_dropdown_categories?
- How to hide/remove featured images in particular categories post?
- In ACF, how to show custom category selection tab upon selecting a main category
- WooCommerce – Get products from category right before deleting category
- omit categories from main navigation menu
- Renaming default category taxonomy?
- Profiling user with categories
- Category names dependent on each other?
- How to relocate images
- Category next page link not working
- Hide category name in URL
- Category archives
- Category For Pages In WordPress
- Inserting categories as a hierarchical terms from frontend form
- Backend – Categories and Menus conflicts
- category__and works, but why?
- Page Type with Category Link
- How to add an empty entry to masonry?
- Own Custom Tags/Category page ( posts)
- How to display many photo albums related to category
- Modify functions.php to add a term ‘uses-theme’ set to theme name on post save
- Create custom Perma link
- Display post of current parent category, and in right hand side show child category post
- Category pagination not working in category.php please help me
- Print the associated categories of the current post starting with parent (with option to remove href)
- Add product category to post_class
- Moving Blog and Changing URL
- completely confused with archive.php, category.php
- Images as Categories