woo-custom-fields
Installation
SKILL.md
WooCommerce Custom Fields & Attributes
Before writing code
Fetch live docs:
- Web-search
site:developer.woocommerce.com product data custom fieldsfor product custom fields guide - Web-search
site:developer.wordpress.org plugins metadatafor WordPress metadata API - Web-search
woocommerce custom product attributes programmaticallyfor attribute creation
Product Attributes
Global Attributes
Defined in WooCommerce > Attributes — shared across all products:
- Stored as custom taxonomies:
pa_{attribute_slug}(e.g.,pa_color,pa_size) - Terms are the possible values (Red, Blue, Small, Large)
- Can be used for filtering, variations, and layered navigation
- Managed via
wc_create_attribute(),wc_update_attribute(),wc_delete_attribute()