WC_Admin_API_Keys::screen_option()
Add screen option.
Метод класса: WC_Admin_API_Keys{}
Хуков нет.
Возвращает
null
. Ничего (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 9.3.1
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', ) ); } }