WC_Data_Store_WP::exclude_internal_meta_keys()protectedWC 1.0

Callback to remove unwanted meta data.

Method of the class: WC_Data_Store_WP{}

No Hooks.

Return

true|false.

Usage

// protected - for code of main (parent) or child class
$result = $this->exclude_internal_meta_keys( $meta );
$meta(object) (required)
Meta object to check if it should be excluded or not.

WC_Data_Store_WP::exclude_internal_meta_keys() code WC 8.7.0

protected function exclude_internal_meta_keys( $meta ) {
	return ! in_array( $meta->meta_key, $this->internal_meta_keys, true ) && 0 !== stripos( $meta->meta_key, 'wp_' );
}