wp-api-yoast-meta
wp-api-yoast-meta copied to clipboard
Works for Woocommerce product categories?
Hello,
I need to add those rest fields to woocommerce product category, so I added this code 👍
// Product cat register_rest_field( 'product_cat', 'yoast_meta', array( 'get_callback' => array( $this, 'wp_api_encode_yoast_tag' ), 'update_callback' => null, 'schema' => null, ) );
In the add_yoast_data function but it did not work, I can't fill those fields from the rest API (it works with posts, pages..)
Did I miss something ?
Thanks