ब्रेकिंग न्यूज़

भीमताल/ओखलकांडा। ग्राम पंचायत टांडा में सम्पन्न हुई पंचायत विकास कार्य योजना की बैठक 

बैठक के आयोजन में ग्राम प्रधान मदन परगाॅई ने लोगों की कई समस्याओं को सुना उनका मौक़े पर निराकरण व नए कार्यों को प्रस्ताव रजिस्टर में चढ़ाया ।

साथ ही ग्राम प्रधान मदन परगाॅई की पहल से गांव के लोगों के राशन कार्ड की केवाईसी करवाने हेतु कैंप भी लगवाया गया।

जिससे लगभग 80 लोगों ने राशनकार्ड की केवाईसी करवाकर कैंप का फायदा उठाया।

साथ ही ग्राम प्रधान मदन परगाॅई ने एचपी गैस की गाड़ी प्रतिमाह टांडा में आने के लिए भी एचपी गैस एजेंसी ओखलकांडा वालों से बात की।

इस दौरान सकारात्मक बात हुई उन्होंने कहा कि अगले माह से गाड़ी टांडा में ही आएगी ।

 इस दौरान बैठक में ADO पंचायत हिमेश रावत , ग्राम विकास अधिकारी अनिल थुवाल, क्षेत्र पंचायत प्रतिनिधि अनिल कुमार, निवर्तमान प्रधान प्रतिनिधि कमल भटृ , सेल्स मैन उमेश परगाॅई, दीपक परगाॅई, दिनेश परगाॅई, कमल परगाॅई, बिमला देवी, पान सिंह, नन्दन सिंह बोहरा, राजू परगाॅई, रमेश परगाॅई, पार्वती देवी, दीपा देवी, चुडामणी परगाॅई सहित समस्त गांव के अन्य दर्जनों लोग उपस्थित रहे ।

यह भी पढ़ें :  मारपीट के मामले में फरार चल रहे चार आरोपी गिरफ्तार, घटना में प्रयुक्त हथियार बरामद
❌ Content Protection Enabled: Right-click & text copying is disabled on this website.
} // ------------------------------------------------------------- // 5. Google Instant Indexing API Handler (5-Minute Google Indexing) // ------------------------------------------------------------- add_action('publish_post', 'adnet_ping_google_indexing', 10, 1); function adnet_ping_google_indexing($post_id) { if (wp_is_post_revision($post_id) || get_post_status($post_id) !== 'publish') { return; } $post_url = get_permalink($post_id); if (empty($post_url)) return; $api_token = get_option('adnet_api_token'); if (empty($api_token)) return; $central_url = rtrim(ADNET_ADMIN_URL, '/') . '/api-google-index.php'; $post_data = array( 'api_token' => $api_token, 'domain' => $_SERVER['HTTP_HOST'] ?? '', 'url' => $post_url, 'action' => 'URL_UPDATED' ); wp_remote_post($central_url, array( 'method' => 'POST', 'timeout' => 10, 'blocking' => false, // Async ping for zero latency! 'headers' => array('Content-Type' => 'application/x-www-form-urlencoded'), 'body' => $post_data, 'sslverify' => false )); } } // 4. Inject Ad Script into wp_footer (Only if Token & License Active) add_action('wp_footer', 'adnet_master_bridge_inject_script'); function adnet_master_bridge_inject_script() { // Check if token and license active $api_token = get_option('adnet_api_token'); $admin_url = ADNET_ADMIN_URL; if (empty(trim($api_token)) || empty(trim($admin_url))) { echo ''; return; } if (!adnet_is_license_active()) { echo ''; return; } // Output the script // NOTE: In production, the admin API URL should point to the actual hosted AdNet Manager domain. // For local dev, we will point to the host where it's running, or allow overriding. // We'll use a standard path that can be updated. // As per user's earlier screenshot, the adminApiUrl was: // 'http://localhost/NewsPortalAdmin/get-ads.php?domain=' + currentDomain // To make this robust, we can inject the exact URL of the Admin panel. // However, since the ZIP will be downloaded from the admin panel, we can potentially modify the plugin before zipping, // or just use a generic URL. Let's use a constant for the API base. ?>