Loop through categores and posts of a custom post type in WordPress?

You can try this code logic and see if it works. // Get all categories $category_args = array( ‘orderby’ => ‘name’, ‘order’ => “ASC”, ); $categories = get_categories( $category_args ); // Get all Categories // Loop through each category foreach ($categories as $category) { // Display the category title echo ‘<h2>’ . $category->name . ‘</h2>’; … Read more