## Category The `category` object describes a product category, including title, description, and hierarchy. ```liquid {%- comment -%} Output category details in a feed {%- endcomment -%} {{ category.title }} {{ category.description }} ``` ## id Returns the category id. ## title Returns the category title. ## description Returns the category description. ## image Returns the category image if such is set. ## seo_description Returns description for search engines. ## seo_title Returns title for search engines. ## seo_keywords Returns keywords for search engines. ## categories Returns the child categories for this category. ## has_parent Returns true if this category has parent, false otherwise. ## parent Retrieves the parent category if category has parent, returns false otherwise. ## breadcrumbs Prints category breadcrumbs. ## is_visible Returns true if this category is visible, false otherwise. ## metafields Nested metafields by namespace and key, e.g. `product.metafields.custom.vip`.