WC_Admin_API_Keys::screen_option()publicWC 1.0

Add screen option.

Method of the class: WC_Admin_API_Keys{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Admin_API_Keys = new WC_Admin_API_Keys();
$WC_Admin_API_Keys->screen_option();

WC_Admin_API_Keys::screen_option() code WC 8.7.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',
			)
		);
	}
}