Automattic\WooCommerce\Internal\ShopperLists
ShopperList::save
Persist the current state to user meta.
Метод класса: ShopperList{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$ShopperList = new ShopperList(); $ShopperList->save(): void;
Код ShopperList::save() ShopperList::save WC 10.9.1
public function save(): void {
Users::update_site_user_meta(
$this->user_id,
self::META_KEY_PREFIX . $this->slug,
$this->to_array()
);
}