WC_Admin_API_Keys::screen_option() public WC 1.0
Add screen option.
{} Это метод класса: WC_Admin_API_Keys{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$WC_Admin_API_Keys = new WC_Admin_API_Keys(); $WC_Admin_API_Keys->screen_option();
Код WC_Admin_API_Keys::screen_option() WC Admin API Keys::screen option WC 5.0.0
public function screen_option() {
global $keys_table_list;
if ( ! isset( $_GET['create-key'] ) && ! isset( $_GET['edit-key'] ) && $this->is_api_keys_settings_page() ) { // WPCS: input var okay, CSRF ok.
$keys_table_list = new WC_Admin_API_Keys_Table_List();
// Add screen option.
add_screen_option(
'per_page',
array(
'default' => 10,
'option' => 'woocommerce_keys_per_page',
)
);
}
}