WC_Data::get_meta_data()publicWC 2.6.0

Get All Meta Data.

Method of the class: WC_Data{}

No Hooks.

Return

Array. of objects.

Usage

$WC_Data = new WC_Data();
$WC_Data->get_meta_data();

Changelog

Since 2.6.0 Introduced.

WC_Data::get_meta_data() code WC 8.7.0

public function get_meta_data() {
	$this->maybe_read_meta_data();
	return array_values( array_filter( $this->meta_data, array( $this, 'filter_null_meta' ) ) );
}