{"id":12631,"date":"2022-02-01T17:33:54","date_gmt":"2022-02-01T12:33:54","guid":{"rendered":"https:\/\/voiceofkp.org\/en\/?page_id=12631"},"modified":"2026-04-02T15:41:09","modified_gmt":"2026-04-02T10:41:09","slug":"home","status":"publish","type":"page","link":"https:\/\/voiceofkp.org\/en\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"12631\" class=\"elementor elementor-12631\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b442355 e-flex e-con-boxed e-con e-parent\" data-id=\"b442355\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-24e9ef3 elementor-widget elementor-widget-text-editor\" data-id=\"24e9ef3\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>\t\t<div data-elementor-type=\"container\" data-elementor-id=\"44422\" class=\"elementor elementor-44422\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-79b8c0d6 e-flex e-con-boxed e-con e-parent\" data-id=\"79b8c0d6\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22c5a4cd elementor-widget elementor-widget-html\" data-id=\"22c5a4cd\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"opinions-carousel-container\">\r\n  <div class=\"opinions-carousel\">\r\n    <!-- Slides will be populated here -->\r\n  <\/div>\r\n<\/div>\r\n\r\n<script>\r\n  document.addEventListener('DOMContentLoaded', function() {\r\n    \/\/ Fetch posts from WordPress - using the current site's API endpoint\r\n    fetchOpinionPosts();\r\n    \r\n    function fetchOpinionPosts() {\r\n      \/\/ Get the current site's REST API base URL\r\n      const currentSiteRestUrl = getCurrentSiteRestUrl();\r\n      \r\n      \/\/ Using the WordPress REST API to fetch posts from the Opinions category\r\n      fetch(`${currentSiteRestUrl}\/categories?search=opinions`)\r\n        .then(response => response.json())\r\n        .then(categories => {\r\n          if (categories.length > 0) {\r\n            const categoryId = categories[0].id;\r\n            \/\/ Now fetch posts from this category\r\n            return fetch(`${currentSiteRestUrl}\/posts?categories=${categoryId}&_embed&per_page=5`);\r\n          } else {\r\n            throw new Error('Opinions category not found');\r\n          }\r\n        })\r\n        .then(response => response.json())\r\n        .then(posts => {\r\n          populateCarousel(posts);\r\n        })\r\n        .catch(error => {\r\n          console.error('Error fetching posts:', error);\r\n          \/\/ Create fallback content in case of API failure\r\n          createFallbackContent();\r\n        });\r\n    }\r\n    \r\n    \/\/ Function to get the current site's REST API URL\r\n    function getCurrentSiteRestUrl() {\r\n      \/\/ Check if we're on a secondary site by looking at the URL path\r\n      const currentUrl = window.location.href;\r\n      const urlParts = currentUrl.split('\/');\r\n      \r\n      \/\/ Default REST API endpoint for the main site\r\n      let restApiUrl = '\/wp-json\/wp\/v2';\r\n      \r\n      \/\/ If we're on a secondary site (e.g., voiceofkp.org\/en\/...)\r\n      \/\/ we need to adjust the REST API endpoint accordingly\r\n      if (urlParts.includes('en')) {\r\n        restApiUrl = '\/en\/wp-json\/wp\/v2';\r\n      }\r\n      \r\n      return restApiUrl;\r\n    }\r\n    \r\n    function getSubcategoryClass(subcategory) {\r\n      if (!subcategory) return 'subcategory-default';\r\n      \r\n      const subcategoryLower = subcategory.toLowerCase();\r\n      if (subcategoryLower.includes('editorial')) return 'subcategory-editorial';\r\n      if (subcategoryLower.includes('article')) return 'subcategory-article';\r\n      if (subcategoryLower.includes('blog')) return 'subcategory-blog';\r\n      if (subcategoryLower.includes('opinion')) return 'subcategory-opinion';\r\n      if (subcategoryLower.includes('review')) return 'subcategory-review';\r\n      \r\n      return 'subcategory-default';\r\n    }\r\n    \r\n    function populateCarousel(posts) {\r\n      const carouselElement = document.querySelector('.opinions-carousel');\r\n      \r\n      if (!posts || posts.length === 0) {\r\n        createFallbackContent();\r\n        return;\r\n      }\r\n      \r\n      posts.forEach((post, index) => {\r\n        \/\/ Get the subcategories (child categories of Opinions)\r\n        let subcategory = 'Opinion';\r\n        if (post._embedded && post._embedded['wp:term']) {\r\n          const categories = post._embedded['wp:term'][0];\r\n          \/\/ Find child categories (excluding the main Opinions category)\r\n          const subCategories = categories.filter(cat => \r\n            !cat.name.toLowerCase().includes('opinion'));\r\n          \r\n          if (subCategories.length > 0) {\r\n            subcategory = subCategories[0].name;\r\n          }\r\n        }\r\n        \r\n        \/\/ Get the post URL\r\n        const postUrl = post.link;\r\n        \r\n        \/\/ Create the slide\r\n        const slide = document.createElement('div');\r\n        slide.className = `carousel-slide ${getSubcategoryClass(subcategory)}`;\r\n        \r\n        \/\/ Get the author data\r\n        const author = post._embedded?.author?.[0] || { name: 'Anonymous' };\r\n        const authorAvatar = author.avatar_urls?.['96'] || '\/wp-content\/plugins\/elementor\/assets\/images\/placeholder.png';\r\n        \r\n        \/\/ Create slide content\r\n        slide.innerHTML = `\r\n          <a href=\"${postUrl}\" class=\"slide-link\" aria-label=\"Read ${post.title.rendered}\"><\/a>\r\n          <div class=\"slide-content\">\r\n            <div class=\"author-section\">\r\n              <img decoding=\"async\" src=\"${authorAvatar}\" alt=\"${author.name}\" class=\"author-image\">\r\n              <p class=\"author-name\">${author.name}<\/p>\r\n            <\/div>\r\n            <div class=\"content-section\">\r\n              <h3 class=\"slide-title\">${post.title.rendered}<\/h3>\r\n              <p class=\"subcategory\">${subcategory}<\/p>\r\n            <\/div>\r\n          <\/div>\r\n        `;\r\n        \r\n        carouselElement.appendChild(slide);\r\n      });\r\n      \r\n      \/\/ Clone the first 2 slides and append them to the end for seamless looping\r\n      const slides = document.querySelectorAll('.carousel-slide');\r\n      if (slides.length > 0) {\r\n        const firstSlideClone = slides[0].cloneNode(true);\r\n        const secondSlideClone = slides.length > 1 ? slides[1].cloneNode(true) : null;\r\n        \r\n        carouselElement.appendChild(firstSlideClone);\r\n        if (secondSlideClone) {\r\n          carouselElement.appendChild(secondSlideClone);\r\n        }\r\n      }\r\n      \r\n      \/\/ Set up the carousel\r\n      setupCarousel();\r\n    }\r\n    \r\n    function createFallbackContent() {\r\n      const carouselElement = document.querySelector('.opinions-carousel');\r\n      \r\n      \/\/ Sample subcategories\r\n      const subcategories = ['Editorial', 'Article', 'Blog', 'Opinion', 'Review'];\r\n      \r\n      \/\/ Create 5 placeholder slides\r\n      for (let i = 0; i < 5; i++) {\r\n        const subcategory = subcategories[i % subcategories.length];\r\n        const slide = document.createElement('div');\r\n        slide.className = `carousel-slide ${getSubcategoryClass(subcategory)}`;\r\n        \r\n        \/\/ Use placeholder link for fallback content\r\n        slide.innerHTML = `\r\n          <a href=\"#\" class=\"slide-link\" aria-label=\"Read sample content\"><\/a>\r\n          <div class=\"slide-content\">\r\n            <div class=\"author-section\">\r\n              <img decoding=\"async\" src=\"\/wp-content\/plugins\/elementor\/assets\/images\/placeholder.png\" alt=\"Author\" class=\"author-image\">\r\n              <p class=\"author-name\">Author Name<\/p>\r\n            <\/div>\r\n            <div class=\"content-section\">\r\n              <h3 class=\"slide-title\">Sample ${subcategory} Title ${i + 1}<\/h3>\r\n              <p class=\"subcategory\">${subcategory}<\/p>\r\n            <\/div>\r\n          <\/div>\r\n        `;\r\n        \r\n        carouselElement.appendChild(slide);\r\n      }\r\n      \r\n      \/\/ Clone the first 2 slides and append them to the end for seamless looping\r\n      const slides = document.querySelectorAll('.carousel-slide');\r\n      if (slides.length > 0) {\r\n        const firstSlideClone = slides[0].cloneNode(true);\r\n        const secondSlideClone = slides.length > 1 ? slides[1].cloneNode(true) : null;\r\n        \r\n        carouselElement.appendChild(firstSlideClone);\r\n        if (secondSlideClone) {\r\n          carouselElement.appendChild(secondSlideClone);\r\n        }\r\n      }\r\n      \r\n      \/\/ Set up the carousel\r\n      setupCarousel();\r\n    }\r\n    \r\n    function setupCarousel() {\r\n      let currentSlide = 0;\r\n      const carouselElement = document.querySelector('.opinions-carousel');\r\n      const slides = document.querySelectorAll('.carousel-slide');\r\n      const actualSlides = slides.length - 2; \/\/ Subtract the cloned slides\r\n      \r\n      \/\/ Set initial position\r\n      updateCarousel();\r\n      \r\n      \/\/ Function to update the carousel position with seamless looping\r\n      function updateCarousel() {\r\n        carouselElement.style.transition = currentSlide < 0 || currentSlide >= actualSlides ? 'none' : 'transform 0.5s ease';\r\n        carouselElement.style.transform = `translateX(-${currentSlide * 100}%)`;\r\n        \r\n        \/\/ Handle seamless looping\r\n        if (currentSlide < 0) {\r\n          \/\/ If we go to -1, we need to jump to the real last slide after animation\r\n          currentSlide = actualSlides - 1;\r\n          \/\/ Use setTimeout with 0ms to allow the browser to apply the 'none' transition first\r\n          setTimeout(() => {\r\n            carouselElement.style.transform = `translateX(-${currentSlide * 100}%)`;\r\n          }, 0);\r\n        } else if (currentSlide >= actualSlides) {\r\n          \/\/ If we go past the last real slide, we need to jump to the first real slide after animation\r\n          currentSlide = 0;\r\n          \/\/ Use setTimeout with 0ms to allow the browser to apply the 'none' transition first\r\n          setTimeout(() => {\r\n            carouselElement.style.transform = `translateX(-${currentSlide * 100}%)`;\r\n          }, 0);\r\n        }\r\n      }\r\n      \r\n      \/\/ Set up automatic sliding\r\n      let autoSlideInterval = setInterval(() => {\r\n        currentSlide++;\r\n        updateCarousel();\r\n      }, 5000);\r\n      \r\n      \/\/ Pause auto-sliding when hovering over the carousel\r\n      carouselElement.addEventListener('mouseenter', () => {\r\n        clearInterval(autoSlideInterval);\r\n      });\r\n      \r\n      carouselElement.addEventListener('mouseleave', () => {\r\n        autoSlideInterval = setInterval(() => {\r\n          currentSlide++;\r\n          updateCarousel();\r\n        }, 5000);\r\n      });\r\n      \r\n      \/\/ Handle transition end for seamless looping\r\n      carouselElement.addEventListener('transitionend', () => {\r\n        if (currentSlide >= actualSlides) {\r\n          currentSlide = 0;\r\n          carouselElement.style.transition = 'none';\r\n          carouselElement.style.transform = `translateX(0)`;\r\n          \/\/ Force reflow\r\n          void carouselElement.offsetWidth;\r\n          \/\/ Restore transition\r\n          carouselElement.style.transition = 'transform 0.5s ease';\r\n        } else if (currentSlide < 0) {\r\n          currentSlide = actualSlides - 1;\r\n          carouselElement.style.transition = 'none';\r\n          carouselElement.style.transform = `translateX(-${currentSlide * 100}%)`;\r\n          \/\/ Force reflow\r\n          void carouselElement.offsetWidth;\r\n          \/\/ Restore transition\r\n          carouselElement.style.transition = 'transform 0.5s ease';\r\n        }\r\n      });\r\n      \r\n      \/\/ For touch devices\r\n      let touchStartX = 0;\r\n      let touchEndX = 0;\r\n      let isSwiping = false;\r\n      \r\n      carouselElement.addEventListener('touchstart', (e) => {\r\n        touchStartX = e.changedTouches[0].screenX;\r\n        isSwiping = true;\r\n        clearInterval(autoSlideInterval);\r\n      }, { passive: true });\r\n      \r\n      carouselElement.addEventListener('touchmove', (e) => {\r\n        if (isSwiping) {\r\n          \/\/ Prevent default scrolling behavior while swiping the carousel\r\n          e.preventDefault();\r\n        }\r\n      }, { passive: false });\r\n      \r\n      carouselElement.addEventListener('touchend', (e) => {\r\n        touchEndX = e.changedTouches[0].screenX;\r\n        const wasSwiping = isSwiping;\r\n        isSwiping = false;\r\n        \r\n        if (wasSwiping) {\r\n          const swipeDistance = Math.abs(touchEndX - touchStartX);\r\n          if (swipeDistance > 50) {\r\n            \/\/ Only handle as swipe if distance is significant\r\n            handleSwipe();\r\n            \r\n            \/\/ Prevent click on links immediately after swiping\r\n            const slideLinks = document.querySelectorAll('.slide-link');\r\n            slideLinks.forEach(link => {\r\n              const originalClickHandler = link.onclick;\r\n              link.onclick = (e) => {\r\n                e.preventDefault();\r\n                setTimeout(() => {\r\n                  link.onclick = originalClickHandler;\r\n                }, 100);\r\n              };\r\n            });\r\n          }\r\n        }\r\n        \r\n        \/\/ Restart auto-sliding\r\n        autoSlideInterval = setInterval(() => {\r\n          currentSlide++;\r\n          updateCarousel();\r\n        }, 5000);\r\n      }, { passive: true });\r\n      \r\n      function handleSwipe() {\r\n        const swipeThreshold = 50;\r\n        if (touchEndX < touchStartX - swipeThreshold) {\r\n          \/\/ Swiped left, go to next slide\r\n          currentSlide++;\r\n          updateCarousel();\r\n        } else if (touchEndX > touchStartX + swipeThreshold) {\r\n          \/\/ Swiped right, go to previous slide\r\n          currentSlide--;\r\n          updateCarousel();\r\n        }\r\n      }\r\n    }\r\n  });\r\n<\/script>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-845d10b e-flex e-con-boxed e-con e-parent\" data-id=\"845d10b\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5b5190c elementor-widget elementor-widget-html\" data-id=\"5b5190c\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t    <div class=\"vokp-news-container\">\r\n                    <h2 class=\"vokp-section-title\">\r\n                <a href=\"https:\/\/voiceofkp.org\/en\/news\/\">Latest News<\/a>\r\n            <\/h2>\r\n        \r\n        <div class=\"vokp-news-section three-column-layout\">\r\n\r\n            <!-- First Column - Featured Post -->\r\n            <div class=\"vokp-column featured-column\">\r\n                                        <article class=\"vokp-news-item vokp-featured-post\">\r\n                                                            <div class=\"vokp-post-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/operation-ghazab-lil-haq-launched-against-afghan-taliban\/\">\r\n                                        <img fetchpriority=\"high\" decoding=\"async\" width=\"700\" height=\"350\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/02\/Operation-Ghazab-Lil-Haqq.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"News\" \/>                                    <\/a>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"vokp-post-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/operation-ghazab-lil-haq-launched-against-afghan-taliban\/\">Operation Ghazab lil-Haq\u2019 Launched Against Afghan Taliban<\/a>\r\n                                <\/h3>\r\n\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                                                                    <span class=\"vokp-post-date\">\r\n                                                <i class=\"fas fa-calendar-alt\"><\/i> February 27, 2026                                            <\/span>\r\n                                                                                                                    <\/div>\r\n                                \r\n                                                                    <div class=\"vokp-post-excerpt\">\r\n                                        133 Afghan Taliban Killed, Airstrikes Confirmed; UN Urges Restraint Peshawar\/Islamabad: Pakistan formally launched \u201cOperation Ghazab lil-Haq\u201d (Righteous Fury) on Thursday night following unprovoked firing by Afghan Taliban forces, triggering heavy fighting across multiple sectors along the Pakistan\u2013Afghanistan border. Reports indicate that heavy weaponry was used in the sectors of Chitral, Khyber, Mohmand, Kurram, and Bajaur [&hellip;]                                    <\/div>\r\n                                \r\n                                <a href=\"https:\/\/voiceofkp.org\/en\/operation-ghazab-lil-haq-launched-against-afghan-taliban\/\" class=\"vokp-read-more\">\r\n                                    See More                                <\/a>\r\n                            <\/div>\r\n                        <\/article>\r\n                            <\/div>\r\n\r\n            <!-- Second Column - List with Offset -->\r\n            <div class=\"vokp-column middle-column\">\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/phc-orders-immediate-reopening-of-blocked-roads\/\">PHC Orders Immediate Reopening of Blocked Roads<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> February 17, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/phc-orders-immediate-reopening-of-blocked-roads\/\">\r\n                                        <img decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/02\/PHC-Order-Reopening-of-Roads-150x150.jpeg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"National News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/02\/PHC-Order-Reopening-of-Roads-150x150.jpeg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/02\/PHC-Order-Reopening-of-Roads-300x300.jpeg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/02\/PHC-Order-Reopening-of-Roads-135x135.jpeg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/dik-seven-fak-sent-to-hell\/\">DIK: 7 FAK eliminated in IBO, Naik Yasir embraced Shahdat, ISPR<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> December 16, 2025                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/dik-seven-fak-sent-to-hell\/\">\r\n                                        <img decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/12\/ISPR-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/12\/ISPR-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/12\/ISPR-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/12\/ISPR-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/foreign-minister-of-the-arab-republic-of-egypt-called-on-field-marshal-syed-asim-munir-ni-m\/\">Egypt FM called on Pak COAS<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> December 1, 2025                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/foreign-minister-of-the-arab-republic-of-egypt-called-on-field-marshal-syed-asim-munir-ni-m\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/12\/593464438_1287174410106014_6501271282379268852_n-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Foreign Minister of the Arab Republic of Egypt, called on Field Marshal Syed Asim Munir, NI (M)\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/12\/593464438_1287174410106014_6501271282379268852_n-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/12\/593464438_1287174410106014_6501271282379268852_n-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/12\/593464438_1287174410106014_6501271282379268852_n-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/12\/593464438_1287174410106014_6501271282379268852_n-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/coas-field-marshal-syed-asim-munir-visit-to-peshawar\/\">COAS Lauds Tribal Support in Fight Against Terrorism<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> October 30, 2025                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/coas-field-marshal-syed-asim-munir-visit-to-peshawar\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/COAS-1-150x150.jpeg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"COAS visits Peshawar\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/COAS-1-150x150.jpeg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/COAS-1-300x300.jpeg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/COAS-1-768x768.jpeg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/COAS-1-135x135.jpeg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/people-across-kp-hold-rallies-in-solidarity-with-pakistan-army\/\">People Across KP hold Rallies in Solidarity with Pakistan Army<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> October 13, 2025                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/people-across-kp-hold-rallies-in-solidarity-with-pakistan-army\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/Pak-Army-Solidarity-Rallies-3-Oct-25-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Masses solidarity rallies with Pakistan Army\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/Pak-Army-Solidarity-Rallies-3-Oct-25-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/Pak-Army-Solidarity-Rallies-3-Oct-25-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/Pak-Army-Solidarity-Rallies-3-Oct-25-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                            <\/div>\r\n\r\n            <!-- Third Column - List with Offset -->\r\n            <div class=\"vokp-column right-column\">\r\n                                         <article class=\"vokp-news-item vokp-list-item\">\r\n                            <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/272nd-corps-commanders-conference-ccc\/\">COAS Presides Over 272nd CCs\u2019 Conference, Vows Decisive Response to Any Indian Aggression<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> October 8, 2025                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/272nd-corps-commanders-conference-ccc\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/272-Corps-Commanders-Conference-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"272nd CCC\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/272-Corps-Commanders-Conference-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/272-Corps-Commanders-Conference-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/10\/272-Corps-Commanders-Conference-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                            <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/matric-annual-begin-over-71000-students-to-appear\/\">Matric Annual Begin, Over 71,000 Students to Appear<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> October 8, 2025                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/matric-annual-begin-over-71000-students-to-appear\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/08\/bise-peshawar-150x150.webp\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"BISE Matric Annual Examination 2025\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/08\/bise-peshawar-150x150.webp 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/08\/bise-peshawar-300x300.webp 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/08\/bise-peshawar-135x135.webp 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                            <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/orakzai-operation-19-indian-sponsored-khwarij-killed\/\">Orakzai Operation: 19 Indian-Sponsored Khwarij Killed<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> October 8, 2025                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/orakzai-operation-19-indian-sponsored-khwarij-killed\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Ispr_new_logo-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"ISPR logo\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Ispr_new_logo-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Ispr_new_logo-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Ispr_new_logo-135x135.jpg 135w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Ispr_new_logo.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                            <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/anf-foils-major-drug-trafficking-attempt-at-torkham-border\/\">ANF Foils Major Drug Trafficking Attempt at Torkham Border<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> September 15, 2025                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/anf-foils-major-drug-trafficking-attempt-at-torkham-border\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/09\/2-a-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"ANF Foils Major Drug Trafficking Attempt at Torkham Border\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/09\/2-a-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/09\/2-a-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/09\/2-a-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/09\/2-a-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                            <\/div>\r\n\r\n        <\/div><!-- \/.vokp-news-section -->\r\n    <\/div><!-- \/.vokp-news-container -->\r\n    \t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9f5c688 elementor-widget elementor-widget-text-editor\" data-id=\"9f5c688\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>    <div class=\"vokp-divider-container\" style=\"margin-top: 0px; margin-bottom: 0px; --vokp-divider-hover-color: #0156af;\">\r\n        <span class=\"vokp-divider-line vokp-divider-line-left\"><\/span>\r\n        <h2 class=\"vokp-divider-text\" style=\"color: #38332f;\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/news\/\">See More<\/a>\r\n                    <\/h2>\r\n        <span class=\"vokp-divider-line vokp-divider-line-right\"><\/span>\r\n    <\/div>\r\n    <\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-37ecb5c e-flex e-con-boxed e-con e-parent\" data-id=\"37ecb5c\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eb2bf43 elementor-widget elementor-widget-html\" data-id=\"eb2bf43\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"manual-youtube-gallery yt-gallery-cols-3\">\r\n                <div class=\"yt-video-item\" data-video-id=\"-bk3BiBSeCI\" title=\"Watch: 2 Crore Fine on Naseem Shah; Court Verdict Expected in Imran Khan Release Force Case\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/-bk3BiBSeCI\/sddefault.jpg\" alt=\"2 Crore Fine on Naseem Shah; Court Verdict Expected in Imran Khan Release Force Case\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">2 Crore Fine on Naseem Shah; Court Verdict Expected in Imran Khan Release Force Case<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"cP1k-uY-NN0\" title=\"Watch: Peshawar Jirgah; Torkham border open; China jumps into the field | Voice of KP\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/cP1k-uY-NN0\/sddefault.jpg\" alt=\"Peshawar Jirgah; Torkham border open; China jumps into the field | Voice of KP\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">Peshawar Jirgah; Torkham border open; China jumps into the field | Voice of KP<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"HicW6sm8wRg\" title=\"Watch: Pakistan Steps Up Counterterrorism Operations\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/HicW6sm8wRg\/sddefault.jpg\" alt=\"Pakistan Steps Up Counterterrorism Operations\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">Pakistan Steps Up Counterterrorism Operations<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"lcZIR7rNtOo\" title=\"Watch: New Phase of US-Israel War on Iran: Fear of Boots on Ground | Ceasefire Efforts Fail? (Pashto)\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/lcZIR7rNtOo\/sddefault.jpg\" alt=\"New Phase of US-Israel War on Iran: Fear of Boots on Ground | Ceasefire Efforts Fail? (Pashto)\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">New Phase of US-Israel War on Iran: Fear of Boots on Ground | Ceasefire Efforts Fail? (Pashto)<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"ILe8qsWku3U\" title=\"Watch: Afghan Foreign Minister&#039;s Negotiations Offer to Pakistan\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/ILe8qsWku3U\/sddefault.jpg\" alt=\"Afghan Foreign Minister&#039;s Negotiations Offer to Pakistan\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">Afghan Foreign Minister&#039;s Negotiations Offer to Pakistan<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"Vu2oUdt8bwU\" title=\"Watch: Pak-Afghan ceasefire issue and the return of Afghan refugees\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/Vu2oUdt8bwU\/sddefault.jpg\" alt=\"Pak-Afghan ceasefire issue and the return of Afghan refugees\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">Pak-Afghan ceasefire issue and the return of Afghan refugees<\/h3>\r\n                <\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8220f78 e-flex e-con-boxed e-con e-parent\" data-id=\"8220f78\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9caf25f elementor-widget elementor-widget-html\" data-id=\"9caf25f\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t        <h2 class=\"vokp-section-title\">\r\n            Sports News        <\/h2>\r\n            <div class=\"vokp-sports-grid vokp-grid-cols-4\">\r\n                             <article id=\"post-45701\" class=\"vokp-sports-item post-45701 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/new-afghan-di-khan-qualifies-for-quarterfinals-in-saeed-khan-memorial-football-tournament\/\" aria-label=\"Read more about New Afghan DI Khan qualifies for Quarterfinals in Saeed Khan Memorial Football Tournament\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"585\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/07\/WhatsApp-Image-2025-07-03-at-12.35.41_e36c8791-768x585.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"New Afghan DI Khan Qualifies for Quarterfinals in Saeed Khan Memorial Football Tournament\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/new-afghan-di-khan-qualifies-for-quarterfinals-in-saeed-khan-memorial-football-tournament\/\">\r\n                                New Afghan DI Khan qualifies for Quarterfinals in Saeed Khan Memorial Football Tournament                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                July 3, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45595\" class=\"vokp-sports-item post-45595 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/shandur-polo-festival-kicks-off\/\" aria-label=\"Read more about Shandur Polo Festival Kicks Off\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"512\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/06\/505435710_1104263551725533_3813989821859288615_n-768x512.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Pakistan&#039;s biggest Shandur Polo Festival will be held from June 20. Khyber Pakhtunkhwa Chief Minister Ali Amin Gandapur has fixed the date of Shandur Polo Festival. Advisor to Tourism Zahid Chanzeb has directed to finalize all preparations for Shandur Polo Festival. Shandur Polo Festival will be held in Upper Chitral from June 20 to June 22, 2025. All preparations for Shandur Polo Festival will be finalized. All possible facilities will be provided to the tourists coming to the festival. Shandur Polo Festival will be successfully organized and awareness campaign will be launched from now. Teams from Chitral Lower and Chitral Upper will compete with teams from Gilgit-Baltistan in the festival. Shandur Polo Festival will be organized in collaboration with Pakistan Army, Khyber Pakhtunkhwa Tourism Authority, District Administration Chitral Lower and Upper, Police and Chitral Scouts.\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/shandur-polo-festival-kicks-off\/\">\r\n                                Shandur Polo Festival Kicks Off                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                June 20, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45474\" class=\"vokp-sports-item post-45474 post type-post status-publish format-standard has-post-thumbnail hentry category-national category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/arshad-nadeem-wins-gold-at-asian-athletics-championship\/\" aria-label=\"Read more about Arshad Nadeem Wins Asian Gold\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"565\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/497923599_583717618103496_7776699047564078136_n-768x565.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Arshad Nadeem wins Gold at Asian Athletics Championship\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/arshad-nadeem-wins-gold-at-asian-athletics-championship\/\">\r\n                                Arshad Nadeem Wins Asian Gold                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 31, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45477\" class=\"vokp-sports-item post-45477 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/world-cycling-day-2025-to-be-celebrated-nationwide-in-pakistan\/\" aria-label=\"Read more about Nationwide World Cycling Day 2025\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"600\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/i7l89o.o-768x600.webp\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"World Cycling Day 2025\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/world-cycling-day-2025-to-be-celebrated-nationwide-in-pakistan\/\">\r\n                                Nationwide World Cycling Day 2025                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 31, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45463\" class=\"vokp-sports-item post-45463 post type-post status-publish format-standard has-post-thumbnail hentry category-national category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/arshad-nadeem-secures-spot-in-javelin-final-at-asian-athletics-championship\/\" aria-label=\"Read more about Javelin: Arshad Nadeem in Final\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"369\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/ezgif.com-resize-2024-07-07T180517.287.webp\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Arshad Nadeem Secures Spot in Javelin Final at Asian Athletics Championship\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/arshad-nadeem-secures-spot-in-javelin-final-at-asian-athletics-championship\/\">\r\n                                Javelin: Arshad Nadeem in Final                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 30, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45408\" class=\"vokp-sports-item post-45408 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/lahore-qalandars-snatch-thrilling-psl-x-title-with-record-chase-against-quetta-gladiators\/\" aria-label=\"Read more about Lahore Qalandars snatch thrilling PSL X title with record chase against Quetta Gladiators\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"405\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/401138.6.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Lahore Qalandars snatch thrilling PSL X title with record chase against Quetta Gladiators\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/lahore-qalandars-snatch-thrilling-psl-x-title-with-record-chase-against-quetta-gladiators\/\">\r\n                                Lahore Qalandars snatch thrilling PSL X title with record chase against Quetta Gladiators                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 26, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45402\" class=\"vokp-sports-item post-45402 post type-post status-publish format-standard has-post-thumbnail hentry category-national category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/pakistans-bano-kusar-strikes-gold-at-asian-ju-jitsu-championship-2025-defeating-indian-rival\/\" aria-label=\"Read more about Pakistan&#8217;s Bano Kusar Strikes Gold at Asian Ju-Jitsu Championship 2025, Defeating Indian Rival\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"400\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/404957_9335542_updates.webp\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Pakistan&#039;s Bano Kusar Strikes Gold at Asian Ju-Jitsu Championship 2025, Defeating Indian Rival\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/pakistans-bano-kusar-strikes-gold-at-asian-ju-jitsu-championship-2025-defeating-indian-rival\/\">\r\n                                Pakistan&#8217;s Bano Kusar Strikes Gold at Asian Ju-Jitsu Championship 2025, Defeating Indian Rival                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 26, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45384\" class=\"vokp-sports-item post-45384 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/martial-arts-gala-kicks-off-in-abbottabad\/\" aria-label=\"Read more about Martial Arts Gala kicks off in Abbottabad\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/499995038_553681817814462_2004221712042211276_n-768x768.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Martial Arts Gala kicks off in Abbottabad\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/499995038_553681817814462_2004221712042211276_n-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/499995038_553681817814462_2004221712042211276_n-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/499995038_553681817814462_2004221712042211276_n-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/499995038_553681817814462_2004221712042211276_n-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/499995038_553681817814462_2004221712042211276_n-135x135.jpg 135w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/martial-arts-gala-kicks-off-in-abbottabad\/\">\r\n                                Martial Arts Gala kicks off in Abbottabad                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 22, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                    <\/div>\r\n        \t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3510e65 elementor-widget elementor-widget-text-editor\" data-id=\"3510e65\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>    <div class=\"vokp-divider-container\" style=\"margin-top: 0px; margin-bottom: 0px; --vokp-divider-hover-color: #0156af;\">\r\n        <span class=\"vokp-divider-line vokp-divider-line-left\"><\/span>\r\n        <h2 class=\"vokp-divider-text\" style=\"color: #38332f;\">\r\n                            <a href=\"https:\/\/www.voiceofkp.org\/en\/news\/sports\/\">See More<\/a>\r\n                    <\/h2>\r\n        <span class=\"vokp-divider-line vokp-divider-line-right\"><\/span>\r\n    <\/div>\r\n    <\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c3f52c9 e-flex e-con-boxed e-con e-parent\" data-id=\"c3f52c9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-99eb3c8 elementor-widget elementor-widget-html\" data-id=\"99eb3c8\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t    <div class=\"vokp-opinions-container\">\r\n                    <h2 class=\"vokp-section-title\">Opinions<\/h2>\r\n                \r\n        <div class=\"vokp-opinions-section\">\r\n            <!-- Editorials Column -->\r\n            <div class=\"vokp-opinions-column editorials-column\">\r\n                <h3 class=\"vokp-column-title\">\r\n                    <a href=\"https:\/\/voiceofkp.org\/en\/editorials\/\" class=\"vokp-column-link\">\r\n                        Editorials                    <\/a>\r\n                <\/h3>\r\n                \r\n                                        <article class=\"vokp-opinion-item featured-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail vokp-featured-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/peace-is-elusive-for-afghan-land\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/05\/112284762_mediaitem112284761.jpg-300x300.webp\" class=\"featured-image wp-post-image\" alt=\"Peace is elusive for Afghan land\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/05\/112284762_mediaitem112284761.jpg-300x300.webp 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/05\/112284762_mediaitem112284761.jpg-150x150.webp 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/05\/112284762_mediaitem112284761.jpg-135x135.webp 135w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/peace-is-elusive-for-afghan-land\/\">Peace is elusive for Afghan land<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Hassan Khan                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 16, 2020                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/media-role-in-pakistan\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ-135x135.jpg 135w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ.jpg 409w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/media-role-in-pakistan\/\">Media Role in Pakistan<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Aqeel Yousafzai                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> February 22, 2020                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                <\/div>\r\n            \r\n            <!-- Articles Column -->\r\n            <div class=\"vokp-opinions-column articles-column\">\r\n                <h3 class=\"vokp-column-title\">\r\n                    <a href=\"https:\/\/voiceofkp.org\/en\/opinions\/articles\/\" class=\"vokp-column-link\">\r\n                        Articles                    <\/a>\r\n                <\/h3>\r\n                \r\n                                        <article class=\"vokp-opinion-item featured-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail vokp-featured-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/harnessing-the-untapped-potential-of-kps-youth\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/HARNESSING-THE-UNTAPPED-POTENTIAL-OF-KPs-YOUTH-300x300.png\" class=\"featured-image wp-post-image\" alt=\"21st Magazine Article\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/HARNESSING-THE-UNTAPPED-POTENTIAL-OF-KPs-YOUTH-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/HARNESSING-THE-UNTAPPED-POTENTIAL-OF-KPs-YOUTH-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/HARNESSING-THE-UNTAPPED-POTENTIAL-OF-KPs-YOUTH-135x135.png 135w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/harnessing-the-untapped-potential-of-kps-youth\/\">HARNESSING THE UNTAPPED POTENTIAL OF KP\u2019s YOUTH<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Webdesk                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> January 21, 2026                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kp-economic-potential\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/KP-ECONOMIC-POTENTIAL-BETWEEN-WHAT-EXISTS-AND-WHAT-IS-DONE-2025-1-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"VoKP 21st Magazine Artile\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/KP-ECONOMIC-POTENTIAL-BETWEEN-WHAT-EXISTS-AND-WHAT-IS-DONE-2025-1-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/KP-ECONOMIC-POTENTIAL-BETWEEN-WHAT-EXISTS-AND-WHAT-IS-DONE-2025-1-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kp-economic-potential\/\">KP ECONOMIC POTENTIAL BETWEEN WHAT EXISTS AND WHAT IS DONE (2025)<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Webdesk                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> January 21, 2026                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/peace-efforts-in-kp-through-jirgas\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/PEACE-EFFORTS-IN-KP-THROUGH-JIRGAS-2-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"VoKP 21st Magazine Article\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/PEACE-EFFORTS-IN-KP-THROUGH-JIRGAS-2-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/PEACE-EFFORTS-IN-KP-THROUGH-JIRGAS-2-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/peace-efforts-in-kp-through-jirgas\/\">PEACE EFFORTS IN KP THROUGH JIRGAS<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Webdesk                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> January 21, 2026                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/corruption-in-kp-an-anatomy-of-a-systemic-crisis\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/CORRUPTION-IN-KP-AN-ANATOMY-OF-A-SYSTEMIC-CRISIS-1-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"VoKP 21st Magazine Article\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/CORRUPTION-IN-KP-AN-ANATOMY-OF-A-SYSTEMIC-CRISIS-1-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/01\/CORRUPTION-IN-KP-AN-ANATOMY-OF-A-SYSTEMIC-CRISIS-1-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/corruption-in-kp-an-anatomy-of-a-systemic-crisis\/\">CORRUPTION IN KP AN ANATOMY OF A SYSTEMIC CRISIS<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Engr Saboo Memon                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> January 21, 2026                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                <\/div>\r\n            \r\n            <!-- Blogs Column -->\r\n            <div class=\"vokp-opinions-column blogs-column\">\r\n                <h3 class=\"vokp-column-title\">\r\n                    <a href=\"https:\/\/voiceofkp.org\/en\/opinions\/blogs\/\" class=\"vokp-column-link\">\r\n                        Blogs                    <\/a>\r\n                <\/h3>\r\n                \r\n                                        <article class=\"vokp-opinion-item featured-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail vokp-featured-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/unraveling-the-healthcare-quagmire-in-kp-a-critical-analysis\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/11\/thumbs_b_c_d758316b18c0db29eac8a102498c2cc5-300x300.jpg\" class=\"featured-image wp-post-image\" alt=\"First Cardiology Summit held at LRH Peshawar\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/11\/thumbs_b_c_d758316b18c0db29eac8a102498c2cc5-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/11\/thumbs_b_c_d758316b18c0db29eac8a102498c2cc5-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/11\/thumbs_b_c_d758316b18c0db29eac8a102498c2cc5-135x135.jpg 135w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/unraveling-the-healthcare-quagmire-in-kp-a-critical-analysis\/\">Unraveling the Healthcare Quagmire in KP: A Critical Analysis<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Mansoor Bakhtiar                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> January 5, 2024                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/transcending-barriers-the-quest-for-transgender-empowerment-in-kp-politics\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Transcending Barriers: The Quest for Transgender Empowerment in KP Politics\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-416x419.png 416w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/transcending-barriers-the-quest-for-transgender-empowerment-in-kp-politics\/\">Transcending Barriers: The Quest for Transgender Empowerment in KP Politics<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Mansoor Bakhtiar                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> December 27, 2023                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/maulana-fazlur-rehman-gets-official-invitation-to-visit-kabul-amid-strained-bilateral-ties\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-19_15-16-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"JUIF leader fazal ur rehman invited by afghan taliab to visit to kabul\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-19_15-16-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-19_15-16-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-19_15-16-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/maulana-fazlur-rehman-gets-official-invitation-to-visit-kabul-amid-strained-bilateral-ties\/\">Maulana Fazlur Rehman gets official invitation to visit Kabul amid strained bilateral ties<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Mansoor Bakhtiar                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> December 19, 2023                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/terror-wave-grips-khyber-pakhtunkhwa-alarming-statistics-revealed\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Terror Wave Grips Khyber Pakhtunkhwa: Alarming Statistics Revealed\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26-135x135.png 135w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26.png 676w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/terror-wave-grips-khyber-pakhtunkhwa-alarming-statistics-revealed\/\">Terror Wave Grips Khyber Pakhtunkhwa: Alarming Statistics Revealed<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Mansoor Bakhtiar                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> December 18, 2023                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                <\/div>\r\n        <\/div>\r\n    <\/div>\r\n    \t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-789aca4 elementor-widget elementor-widget-text-editor\" data-id=\"789aca4\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>    <div class=\"vokp-divider-container\" style=\"margin-top: 0px; margin-bottom: 0px; --vokp-divider-hover-color: #0156af;\">\r\n        <span class=\"vokp-divider-line vokp-divider-line-left\"><\/span>\r\n        <h2 class=\"vokp-divider-text\" style=\"color: #38332f;\">\r\n                            See More                    <\/h2>\r\n        <span class=\"vokp-divider-line vokp-divider-line-right\"><\/span>\r\n    <\/div>\r\n    <\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1568c75 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"1568c75\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"aux-parallax-section elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c9b8694\" data-id=\"c9b8694\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-cf1c9a2 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cf1c9a2\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"aux-parallax-section elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a5b53d4\" data-id=\"a5b53d4\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a08d259 elementor-widget elementor-widget-heading\" data-id=\"a08d259\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Newsletters<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<div class=\"elementor-element elementor-element-a9e20e4 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"a9e20e4\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-547e94d elementor-widget elementor-widget-aux_recent_posts\" data-id=\"547e94d\" data-element_type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;3&quot;,&quot;columns_tablet&quot;:&quot;inherit&quot;,&quot;columns_mobile&quot;:&quot;1&quot;}\" data-widget_type=\"aux_recent_posts.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<section class=\"widget-container aux-widget-recent-posts aux-parent-au6e60125f\"><div data-element-id=\"au6e60125f\" class=\"aux-match-height aux-row aux-de-col3 aux-tb-col3 aux-mb-col1 aux-total-3 aux-entry-boxed aux-no-meta aux-ajax-view  \"><div class=\"aux-col post-45246\">\r\n                        <article class=\"post column-entry post-45246 type-post status-publish format-standard has-post-thumbnail hentry category-vokp-newsletter\">\r\n                                                        <div class=\"entry-media\"><div class=\"aux-media-frame aux-media-image aux-image-mask\"><a href=\"https:\/\/voiceofkp.org\/en\/magazine-18th-edition-single\/\"><img decoding=\"async\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-280x180.jpg\" class=\"aux-attachment aux-featured-image attachment-280x180 aux-attachment-id-45260 \" alt=\"Voice of KP Magazine 18th Edition\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-150x96.jpg 150w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-300x193.jpg 300w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-768x494.jpg 768w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-280x180.jpg 280w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-805x517.jpg 805w\" data-ratio=\"1.56\" data-original-w=\"815\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,280px\" \/><\/a><\/div><\/div>\r\n                            \r\n                            <div class=\"entry-main\">\r\n                                                        \r\n                                <header class=\"entry-header\">\r\n                                \r\n                                    <h4 class=\"entry-title\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/magazine-18th-edition-single\/\">\r\n                                            18th Edition Jan-Mar 2025                                        <\/a>\r\n                                    <\/h4>\r\n                                                                    <div class=\"entry-format\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/magazine-18th-edition-single\/\">\r\n                                            <div class=\"post-format format-\"> <\/div>\r\n                                        <\/a>\r\n                                    <\/div>\r\n                                <\/header>\r\n                            \r\n                                                        \r\n                            <\/div>\r\n\r\n                        <\/article>\r\n<\/div><div class=\"aux-col post-44175\">\r\n                        <article class=\"post column-entry post-44175 type-post status-publish format-standard has-post-thumbnail hentry category-vokp-newsletter\">\r\n                                                        <div class=\"entry-media\"><div class=\"aux-media-frame aux-media-image aux-image-mask\"><a href=\"https:\/\/voiceofkp.org\/en\/magazine-17th-edition-single\/\"><img decoding=\"async\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/03\/admin-ajax-e1741935632230-280x180.png\" class=\"aux-attachment aux-featured-image attachment-280x180 aux-attachment-id-44177 \" alt=\"17th Edition Oct-Dec 2024\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/03\/admin-ajax-e1741935632230-150x96.png 150w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/03\/admin-ajax-e1741935632230-300x193.png 300w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/03\/admin-ajax-e1741935632230-280x180.png 280w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/03\/admin-ajax-e1741935632230-424x272.png 424w\" data-ratio=\"1.56\" data-original-w=\"434\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,280px\" \/><\/a><\/div><\/div>\r\n                            \r\n                            <div class=\"entry-main\">\r\n                                                        \r\n                                <header class=\"entry-header\">\r\n                                \r\n                                    <h4 class=\"entry-title\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/magazine-17th-edition-single\/\">\r\n                                            17th Edition Oct-Dec 2024                                        <\/a>\r\n                                    <\/h4>\r\n                                                                    <div class=\"entry-format\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/magazine-17th-edition-single\/\">\r\n                                            <div class=\"post-format format-\"> <\/div>\r\n                                        <\/a>\r\n                                    <\/div>\r\n                                <\/header>\r\n                            \r\n                                                        \r\n                            <\/div>\r\n\r\n                        <\/article>\r\n<\/div><div class=\"aux-col post-37494\">\r\n                        <article class=\"post column-entry post-37494 type-post status-publish format-standard has-post-thumbnail hentry category-vokp-newsletter\">\r\n                                                        <div class=\"entry-media\"><div class=\"aux-media-frame aux-media-image aux-image-mask\"><a href=\"https:\/\/voiceofkp.org\/en\/magazine-16th-edition-single\/\"><img decoding=\"async\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/11\/16-EDITION-280x180.jpg\" class=\"aux-attachment aux-featured-image attachment-280x180 aux-attachment-id-37495 \" alt=\"16 EDITION\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/11\/16-EDITION-150x96.jpg 150w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/11\/16-EDITION-300x193.jpg 300w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/11\/16-EDITION-768x494.jpg 768w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/11\/16-EDITION-1024x658.jpg 1024w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/11\/16-EDITION-280x180.jpg 280w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/11\/16-EDITION-1910x1227.jpg 1910w\" data-ratio=\"1.56\" data-original-w=\"1920\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,280px\" \/><\/a><\/div><\/div>\r\n                            \r\n                            <div class=\"entry-main\">\r\n                                                        \r\n                                <header class=\"entry-header\">\r\n                                \r\n                                    <h4 class=\"entry-title\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/magazine-16th-edition-single\/\">\r\n                                            16th Edition July-Sep 2024                                        <\/a>\r\n                                    <\/h4>\r\n                                                                    <div class=\"entry-format\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/magazine-16th-edition-single\/\">\r\n                                            <div class=\"post-format format-\"> <\/div>\r\n                                        <\/a>\r\n                                    <\/div>\r\n                                <\/header>\r\n                            \r\n                                                        \r\n                            <\/div>\r\n\r\n                        <\/article>\r\n<\/div><\/div><\/section><!-- widget-container -->\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ec071e0 elementor-widget elementor-widget-text-editor\" data-id=\"ec071e0\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>    <div class=\"vokp-divider-container\" style=\"margin-top: 0px; margin-bottom: 0px; --vokp-divider-hover-color: #0156af;\">\r\n        <span class=\"vokp-divider-line vokp-divider-line-left\"><\/span>\r\n        <h2 class=\"vokp-divider-text\" style=\"color: #38332f;\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/vokp-newsletter\/\">See More<\/a>\r\n                    <\/h2>\r\n        <span class=\"vokp-divider-line vokp-divider-line-right\"><\/span>\r\n    <\/div>\r\n    <\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Newsletters 18th Edition Jan-Mar 2025 17th Edition Oct-Dec 2024 16th Edition July-Sep 2024<\/p>\n","protected":false},"author":55,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-12631","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.8.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Home - Voice of KP English<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/voiceofkp.org\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home - Voice of KP English\" \/>\n<meta property=\"og:description\" content=\"Newsletters 18th Edition Jan-Mar 2025 17th Edition Oct-Dec 2024 16th Edition July-Sep 2024\" \/>\n<meta property=\"og:url\" content=\"https:\/\/voiceofkp.org\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Voice of KP English\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-02T10:41:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-280x180.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/voiceofkp.org\/en\/\",\"url\":\"https:\/\/voiceofkp.org\/en\/\",\"name\":\"Home - Voice of KP English\",\"isPartOf\":{\"@id\":\"https:\/\/voiceofkp.org\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/voiceofkp.org\/en\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/voiceofkp.org\/en\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-280x180.jpg\",\"datePublished\":\"2022-02-01T12:33:54+00:00\",\"dateModified\":\"2026-04-02T10:41:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/voiceofkp.org\/en\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/voiceofkp.org\/en\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/voiceofkp.org\/en\/#primaryimage\",\"url\":\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy.jpg\",\"contentUrl\":\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy.jpg\",\"width\":815,\"height\":481,\"caption\":\"Voice of KP Magazine 18th Edition\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/voiceofkp.org\/en\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/voiceofkp.org\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/voiceofkp.org\/en\/#website\",\"url\":\"https:\/\/voiceofkp.org\/en\/\",\"name\":\"Voice of KP English\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/voiceofkp.org\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Home - Voice of KP English","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/voiceofkp.org\/en\/","og_locale":"en_US","og_type":"article","og_title":"Home - Voice of KP English","og_description":"Newsletters 18th Edition Jan-Mar 2025 17th Edition Oct-Dec 2024 16th Edition July-Sep 2024","og_url":"https:\/\/voiceofkp.org\/en\/","og_site_name":"Voice of KP English","article_modified_time":"2026-04-02T10:41:09+00:00","og_image":[{"url":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-280x180.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/voiceofkp.org\/en\/","url":"https:\/\/voiceofkp.org\/en\/","name":"Home - Voice of KP English","isPartOf":{"@id":"https:\/\/voiceofkp.org\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/voiceofkp.org\/en\/#primaryimage"},"image":{"@id":"https:\/\/voiceofkp.org\/en\/#primaryimage"},"thumbnailUrl":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy-280x180.jpg","datePublished":"2022-02-01T12:33:54+00:00","dateModified":"2026-04-02T10:41:09+00:00","breadcrumb":{"@id":"https:\/\/voiceofkp.org\/en\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/voiceofkp.org\/en\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/voiceofkp.org\/en\/#primaryimage","url":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy.jpg","contentUrl":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Voice-of-KP-Final-Magzine-Jan-Mar-2025-Copy.jpg","width":815,"height":481,"caption":"Voice of KP Magazine 18th Edition"},{"@type":"BreadcrumbList","@id":"https:\/\/voiceofkp.org\/en\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/voiceofkp.org\/en\/"},{"@type":"ListItem","position":2,"name":"Home"}]},{"@type":"WebSite","@id":"https:\/\/voiceofkp.org\/en\/#website","url":"https:\/\/voiceofkp.org\/en\/","name":"Voice of KP English","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/voiceofkp.org\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages\/12631","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/users\/55"}],"replies":[{"embeddable":true,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/comments?post=12631"}],"version-history":[{"count":10,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages\/12631\/revisions"}],"predecessor-version":[{"id":48121,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages\/12631\/revisions\/48121"}],"wp:attachment":[{"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/media?parent=12631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}