_wp_privacy_requests_screen_options

The timeline below displays how wordpress function _wp_privacy_requests_screen_options has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.3

/**
 * Was used to add options for the privacy requests screens before they were separate files.
 *
 * @since 4.9.8
 * @access private
 * @deprecated 5.3.0
 */
function _wp_privacy_requests_screen_options()
{
    _deprecated_function(__FUNCTION__, '5.3.0');
}

WordPress Version: .10

/**
 * Add options for the privacy requests screens.
 *
 * @since 4.9.8
 * @access private
 */
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);
}