woocommerce_api_create_product_category

woocommerce_api_create_product_category

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

do_action('woocommerce_api_create_product_category') is found 1 times:

  • /includes/legacy/api/v3/class-wc-api-products.php line 760
    			if ( $image_id && wp_attachment_is_image( $image_id ) ) {
    				update_term_meta( $id, 'thumbnail_id', $image_id );
    			}
    
    			do_action( 'woocommerce_api_create_product_category', $id, $data );
    
    			$this->server->send_status( 201 );
    
    			return $this->get_product_category( $id );
    		} catch ( WC_API_Exception $e ) {
    			return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => $e->getCode() ) );