Automattic\WooCommerce\Internal\DataStores

CustomMetaDataStore::get_object_id_field()protectedWC 1.0

Returns the name of the field/column used for associating meta with objects.

Method of the class: CustomMetaDataStore{}

No Hooks.

Return

String.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_object_id_field();

CustomMetaDataStore::get_object_id_field() code WC 8.7.0

protected function get_object_id_field() {
	return 'object_id';
}