Custom HTML structure in wp_list_categories
In case someone finds this someday I was able to solve this and I used tis walker: class Navigation_Catwalker extends Walker_Category { // Configure the start of each level function start_lvl(&$output, $depth = 0, $args = array()) { $output .= “”; } // Configure the end of each level function end_lvl(&$output, $depth = 0, $args … Read more