WC_Settings_API::get_post_data()
Returns the POSTed data, to be used to save the settings.
Description Description
Return Return
(array)
Source Source
File: includes/abstracts/abstract-wc-settings-api.php
public function get_post_data() { if ( ! empty( $this->data ) && is_array( $this->data ) ) { return $this->data; } return $_POST; // WPCS: CSRF ok, input var ok. }