Automattic\WooCommerce\Admin\API
Leaderboards::get_public_allowed_item_schema()
Get schema for the list of allowed leaderboards.
Метод класса: Leaderboards{}
Хуков нет.
Возвращает
Массив
. $schema
Использование
$Leaderboards = new Leaderboards(); $Leaderboards->get_public_allowed_item_schema();
Код Leaderboards::get_public_allowed_item_schema() Leaderboards::get public allowed item schema WC 9.5.1
public function get_public_allowed_item_schema() { $schema = $this->get_public_item_schema(); unset( $schema['properties']['rows'] ); return $schema; }