Modification to wp_list_categories
Move what you are calling the “standard link ending” to the end of the function, instead of the beginning. class CategoryThumbnail_Walker extends Walker_Category { // A new element has been stumbled upon and has ended function end_el( $output, $category, $depth, $args ) { // Get one post $posts = get_posts( array( // …from this category … Read more