WC_Data_Store_WP::exclude_internal_meta_keys()
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() WC Data Store WP::exclude internal meta keys code WC 9.4.2
protected function exclude_internal_meta_keys( $meta ) { return ! in_array( $meta->meta_key, $this->internal_meta_keys, true ) && 0 !== stripos( $meta->meta_key, 'wp_' ); }