This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

_wp_privacy_requests_screen_options()

Add options for the privacy requests screens.


Source

File: wp-admin/includes/user.php

function _wp_privacy_requests_screen_options() {
	$args = array(
		'option'  => str_replace( 'tools_page_', '', get_current_screen()->id ) . '_requests_per_page',
	);
	add_screen_option( 'per_page', $args );
}


Changelog

Changelog
Version Description
WP-4.9.8 Introduced.