{"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-07-13T18:40:59","modified_gmt":"2026-07-13T13:40:59","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\/peshawar-introduces-online-learners-licence-service-through-rabta-app\/\">\r\n                                        <img fetchpriority=\"high\" decoding=\"async\" width=\"339\" height=\"412\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Peshawar-Traffic-Police-Launched-Rabta-App-Lerner-Permit.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Raabta App 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\/peshawar-introduces-online-learners-licence-service-through-rabta-app\/\">Peshawar Introduces Online Learner\u2019s Licence Service Through \u2018Rabta App\u2019<\/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> July 13, 2026                                            <\/span>\r\n                                                                                                                    <\/div>\r\n                                \r\n                                                                    <div class=\"vokp-post-excerpt\">\r\n                                        Peshawar: City Traffic Police Peshawar has launched an online learner driving licence service through the &#8220;Rabta App&#8221; as part of a public-friendly initiative directed by the Inspector General of Police, Khyber Pakhtunkhwa, Zulfiqar Hameed. Chief Traffic Officer Dr Zahidullah said citizens can now apply for a learner\u2019s driving licence online from the comfort of their [&hellip;]                                    <\/div>\r\n                                \r\n                                <a href=\"https:\/\/voiceofkp.org\/en\/peshawar-introduces-online-learners-licence-service-through-rabta-app\/\" 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\/shakai-wolves-crowned-cricket-champions-at-waziristan-peace-festival-2026\/\">Shakai Wolves Crowned Cricket Champions at Waziristan Peace Festival 2026<\/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> July 10, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/shakai-wolves-crowned-cricket-champions-at-waziristan-peace-festival-2026\/\">\r\n                                        <img decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Sport News Waziristan Peace Festival 2026\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-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\/kp-government-provides-basic-facilities-to-117-minority-places-of-worship\/\">KP Government Provides Basic Facilities to 117 Minority Places of Worship<\/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> July 10, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kp-government-provides-basic-facilities-to-117-minority-places-of-worship\/\">\r\n                                        <img decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Minorities-place-of-warships-News-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Minority in KP News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Minorities-place-of-warships-News-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Minorities-place-of-warships-News-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Minorities-place-of-warships-News-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Minorities-place-of-warships-News-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Minorities-place-of-warships-News-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\/kp-police-releases-six-month-performance-report\/\">KP Police Releases Six-Month Performance Report<\/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> July 7, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kp-police-releases-six-month-performance-report\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/KP-Police-6-months-Performance-Report-150x150.jpeg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"KP Police News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/KP-Police-6-months-Performance-Report-150x150.jpeg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/KP-Police-6-months-Performance-Report-300x300.jpeg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/KP-Police-6-months-Performance-Report-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\/kp-govt-hands-over-land-for-cremations-to-minority-communities-in-di-khan\/\">KP Govt Hands Over Land for Cremations to Minority Communities in DI Khan<\/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> July 1, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kp-govt-hands-over-land-for-cremations-to-minority-communities-in-di-khan\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Cremation-150x150.webp\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Minority News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Cremation-150x150.webp 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Cremation-300x300.webp 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Cremation-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\/kidney-treatment-facilities-expanded-at-institute-of-kidney-diseases-peshawar\/\">Kidney Treatment Facilities Expanded at Institute of Kidney Diseases Peshawar<\/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> June 29, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kidney-treatment-facilities-expanded-at-institute-of-kidney-diseases-peshawar\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Institute-of-Kidney-Diseases-Hayatabad-Peshawar-150x150.webp\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Local Health News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Institute-of-Kidney-Diseases-Hayatabad-Peshawar-150x150.webp 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Institute-of-Kidney-Diseases-Hayatabad-Peshawar-300x300.webp 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Institute-of-Kidney-Diseases-Hayatabad-Peshawar-135x135.webp 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\/teqball-challenger-cup-2026-kicks-off-in-peshawar\/\">Teqball Challenger Cup 2026 Kicks Off in Peshawar<\/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> June 29, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/teqball-challenger-cup-2026-kicks-off-in-peshawar\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Teqball-Challenger-Cup-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Sports News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Teqball-Challenger-Cup-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Teqball-Challenger-Cup-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Teqball-Challenger-Cup-135x135.png 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\/bikers-rally-sets-off-from-peshawar-to-khyber\/\">Bikers Rally Sets Off from Peshawar to Khyber<\/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> June 28, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/bikers-rally-sets-off-from-peshawar-to-khyber\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Bike-Rally-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Local News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Bike-Rally-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Bike-Rally-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Bike-Rally-135x135.png 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\/member-orakzai-jirga-meets-federal-minister-amir-muqam\/\">Member Orakzai Jirga Meets Federal Minister Amir Muqam<\/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> June 13, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/member-orakzai-jirga-meets-federal-minister-amir-muqam\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Ameer-Muqam-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Local News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Ameer-Muqam-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Ameer-Muqam-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Ameer-Muqam-135x135.png 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\/shandur-polo-festival-begins-at-the-worlds-highest-polo-ground\/\">Shandur Polo Festival Begins at the World&#8217;s Highest Polo Ground<\/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> June 11, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/shandur-polo-festival-begins-at-the-worlds-highest-polo-ground\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Sports News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-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=\"wHXrjNLbBBE\" title=\"Watch: KP MPA Privileges, Iran\u2013U.S. Tensions &amp; Operation Shaaban\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/wHXrjNLbBBE\/sddefault.jpg\" alt=\"KP MPA Privileges, Iran\u2013U.S. Tensions &amp; Operation Shaaban\" 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\">KP MPA Privileges, Iran\u2013U.S. Tensions &amp; Operation Shaaban<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"VySL9YTpeEg\" title=\"Watch: Province&#039;s Biggest Challenges, From Budget to Terrorism, Exclusive Discussion with Dr Ibadullah\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/VySL9YTpeEg\/sddefault.jpg\" alt=\"Province&#039;s Biggest Challenges, From Budget to Terrorism, Exclusive Discussion with Dr Ibadullah\" 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\">Province&#039;s Biggest Challenges, From Budget to Terrorism, Exclusive Discussion with Dr Ibadullah<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"3bIQEHK1fXM\" title=\"Watch: Iran&#039;s Supreme Leader&#039;s Final Funeral Rites, Afghan Taliban and 100 foreign delegations\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/3bIQEHK1fXM\/sddefault.jpg\" alt=\"Iran&#039;s Supreme Leader&#039;s Final Funeral Rites, Afghan Taliban and 100 foreign delegations\" 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\">Iran&#039;s Supreme Leader&#039;s Final Funeral Rites, Afghan Taliban and 100 foreign delegations<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"4pV0I_Xhe7U\" title=\"Watch: Taliban Govt Challenge Regional Peace, Pakistan&#039;s Next Move?\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/4pV0I_Xhe7U\/sddefault.jpg\" alt=\"Taliban Govt Challenge Regional Peace, Pakistan&#039;s Next Move?\" 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\">Taliban Govt Challenge Regional Peace, Pakistan&#039;s Next Move?<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"8pB2VsqeRWI\" title=\"Watch: CM KP threatens protest once again | Terrorist hideouts in Afghanistan targeted once again\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/8pB2VsqeRWI\/sddefault.jpg\" alt=\"CM KP threatens protest once again | Terrorist hideouts in Afghanistan targeted once again\" 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\">CM KP threatens protest once again | Terrorist hideouts in Afghanistan targeted once again<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"x0cJ5SbUjB8\" title=\"Watch: Pakistan Once Again Forced to Conduct Airstrikes in Afghanistan\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/x0cJ5SbUjB8\/sddefault.jpg\" alt=\"Pakistan Once Again Forced to Conduct Airstrikes in Afghanistan\" 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 Once Again Forced to Conduct Airstrikes in Afghanistan<\/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-49212\" class=\"vokp-sports-item post-49212 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-news category-sports tag-kpnews tag-kpupdate tag-voiceofkp tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-fata tag-tourism tag-tribal-districts tag-waziristan tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/shakai-wolves-crowned-cricket-champions-at-waziristan-peace-festival-2026\/\" aria-label=\"Read more about Shakai Wolves Crowned Cricket Champions at Waziristan Peace Festival 2026\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-768x768.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Sport News Waziristan Peace Festival 2026\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/07\/Waziristan-Peace-Sports-Festival-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\/shakai-wolves-crowned-cricket-champions-at-waziristan-peace-festival-2026\/\">\r\n                                Shakai Wolves Crowned Cricket Champions at Waziristan Peace Festival 2026                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                July 10, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-49134\" class=\"vokp-sports-item post-49134 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-news category-sports tag-kpnews tag-kpupdate tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-kp tag-kp-police tag-pakistan tag-tourism tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/teqball-challenger-cup-2026-kicks-off-in-peshawar\/\" aria-label=\"Read more about Teqball Challenger Cup 2026 Kicks Off in Peshawar\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"476\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Teqball-Challenger-Cup-768x476.png\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Sports News\" \/>                            <\/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\/teqball-challenger-cup-2026-kicks-off-in-peshawar\/\">\r\n                                Teqball Challenger Cup 2026 Kicks Off in Peshawar                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                June 29, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-49042\" class=\"vokp-sports-item post-49042 post type-post status-publish format-standard has-post-thumbnail hentry category-national category-news category-sports tag-kpupdate tag-pakarmy tag-polo tag-shandoorpolofestival tag-voiceofkp tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-chitral tag-kp tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/shandur-polo-festival-begins-at-the-worlds-highest-polo-ground\/\" aria-label=\"Read more about Shandur Polo Festival Begins at the World&#8217;s Highest Polo Ground\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-768x768.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Sports News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-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\/shandur-polo-festival-begins-at-the-worlds-highest-polo-ground\/\">\r\n                                Shandur Polo Festival Begins at the World&#8217;s Highest Polo Ground                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                June 11, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-49015\" class=\"vokp-sports-item post-49015 post type-post status-publish format-standard has-post-thumbnail hentry category-national category-news category-sports tag-kpsports tag-kpupdate tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-kp tag-national-junior-championship tag-pakistan tag-sports tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/national-junior-championship-kicks-off-in-peshawar\/\" aria-label=\"Read more about National Junior Championship Kicks Off in Peshawar\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-768x768.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"National Sport News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-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\/national-junior-championship-kicks-off-in-peshawar\/\">\r\n                                National Junior Championship Kicks Off in Peshawar                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                June 8, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-48957\" class=\"vokp-sports-item post-48957 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-news category-sports tag-kpupdate tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-kp tag-national-junior-championship tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/national-junior-championship-2026-to-begin-in-peshawar-on-june-7\/\" aria-label=\"Read more about National Junior Championship 2026 to Begin in Peshawar on June 7\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"435\" height=\"489\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-2026.png\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"National Junior Championship 2026\" \/>                            <\/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\/national-junior-championship-2026-to-begin-in-peshawar-on-june-7\/\">\r\n                                National Junior Championship 2026 to Begin in Peshawar on June 7                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                June 2, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-48907\" class=\"vokp-sports-item post-48907 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-news category-sports tag-kpupdate tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-800km tag-kp tag-marathon tag-masood-khan tag-non-stop-run tag-peshawar tag-skardu tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/masood-khan-sets-world-record-with-800km-non-stop-run\/\" aria-label=\"Read more about Masood Khan Sets World Record with 800km Non-Stop Run\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-768x768.png\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-768x768.png 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-1024x1024.png 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-135x135.png 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\/masood-khan-sets-world-record-with-800km-non-stop-run\/\">\r\n                                Masood Khan Sets World Record with 800km Non-Stop Run                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 25, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-48567\" class=\"vokp-sports-item post-48567 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-national category-news category-sports tag-kpupdate tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-kp tag-pakistan tag-pashtuns tag-tribal-districts tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/street-child-world-cup-top-scorer-kashif-shinwari-returns-home\/\" aria-label=\"Read more about Street Child World Cup Top Scorer Kashif Shinwari Returns Home\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-768x768.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Kashif Shinwari Street Child World Cup\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-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\/street-child-world-cup-top-scorer-kashif-shinwari-returns-home\/\">\r\n                                Street Child World Cup Top Scorer Kashif Shinwari Returns Home                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 19, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\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                    <\/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\/jirga-held-to-discuss-peace-and-development-in-tirah\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Jirga-on-Tirah-Peace-300x300.jpg\" class=\"featured-image wp-post-image\" alt=\"Jirga Tirah Peace\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Jirga-on-Tirah-Peace-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Jirga-on-Tirah-Peace-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Jirga-on-Tirah-Peace-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\/jirga-held-to-discuss-peace-and-development-in-tirah\/\">Jirga Held to Discuss Peace and Development in Tirah<\/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> May 23, 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\/youth-radicalization-vs-youth-empowerment\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/The-Battle-for-Narratives-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Magazine Article\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/The-Battle-for-Narratives-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/The-Battle-for-Narratives-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\/youth-radicalization-vs-youth-empowerment\/\">YOUTH RADICALIZATION VS YOUTH EMPOWERMENT<\/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> May 13, 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\/kps-fiscal-stress-in-2026\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Piscal-Stress-in-26-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Magazine Article\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Piscal-Stress-in-26-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Piscal-Stress-in-26-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\/kps-fiscal-stress-in-2026\/\">KP&#8217;S FISCAL STRESS IN 2026: WHEN THE WALLET IS THIN BUT THE PROMISES ARE THICK<\/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> May 13, 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\/kps-counter-terror-gains-a-resilient-march-towards-security-and-stability\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Terror-Gains-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Magazine Article\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Terror-Gains-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Terror-Gains-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Terror-Gains-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\/kps-counter-terror-gains-a-resilient-march-towards-security-and-stability\/\">KP&#8217;S COUNTER TERROR GAINS: A RESILIENT MARCH TOWARDS SECURITY AND STABILITY<\/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> May 13, 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-auef535b93\"><div data-element-id=\"auef535b93\" 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-48584\">\r\n                        <article class=\"post column-entry post-48584 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\/22nd-edition-jan-mar-2026\/\"><img decoding=\"async\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg\" class=\"aux-attachment aux-featured-image attachment-280x180 aux-attachment-id-48585 \" alt=\"Cover Page 22nd Magazine\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-150x96.jpg 150w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-300x193.jpg 300w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg 280w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-510x327.jpg 510w\" data-ratio=\"1.56\" data-original-w=\"520\" 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\/22nd-edition-jan-mar-2026\/\">\r\n                                            22nd Edition Jan-Mar 2026                                        <\/a>\r\n                                    <\/h4>\r\n                                                                    <div class=\"entry-format\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/22nd-edition-jan-mar-2026\/\">\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-48841\">\r\n                        <article class=\"post column-entry post-48841 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\/21st-edition-oct-dec-2025\/\"><img decoding=\"async\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-280x180.png\" class=\"aux-attachment aux-featured-image attachment-280x180 aux-attachment-id-48842 \" alt=\"21st Edition Cover Page\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-150x96.png 150w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-300x193.png 300w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-280x180.png 280w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-455x292.png 455w\" data-ratio=\"1.56\" data-original-w=\"465\" 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\/21st-edition-oct-dec-2025\/\">\r\n                                            21st Edition Oct-Dec 2025                                        <\/a>\r\n                                    <\/h4>\r\n                                                                    <div class=\"entry-format\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/21st-edition-oct-dec-2025\/\">\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-48844\">\r\n                        <article class=\"post column-entry post-48844 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\/20th-edition-july-sept-2025\/\"><img decoding=\"async\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-280x180.png\" class=\"aux-attachment aux-featured-image attachment-280x180 aux-attachment-id-48845 \" alt=\"20th Edition Cover Photo\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-150x96.png 150w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-300x193.png 300w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-280x180.png 280w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-458x294.png 458w\" data-ratio=\"1.56\" data-original-w=\"468\" 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\/20th-edition-july-sept-2025\/\">\r\n                                            20th Edition July-Sept 2025                                        <\/a>\r\n                                    <\/h4>\r\n                                                                    <div class=\"entry-format\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/20th-edition-july-sept-2025\/\">\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 22nd Edition Jan-Mar 2026 21st Edition Oct-Dec 2025 20th Edition July-Sept 2025<\/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 22nd Edition Jan-Mar 2026 21st Edition Oct-Dec 2025 20th Edition July-Sept 2025\" \/>\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-07-13T13:40:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-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\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg\",\"datePublished\":\"2022-02-01T12:33:54+00:00\",\"dateModified\":\"2026-07-13T13:40:59+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\/2026\/05\/Cover-Page-22nd-Magazine-1.jpg\",\"contentUrl\":\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1.jpg\",\"width\":520,\"height\":696},{\"@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 22nd Edition Jan-Mar 2026 21st Edition Oct-Dec 2025 20th Edition July-Sept 2025","og_url":"https:\/\/voiceofkp.org\/en\/","og_site_name":"Voice of KP English","article_modified_time":"2026-07-13T13:40:59+00:00","og_image":[{"url":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-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\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg","datePublished":"2022-02-01T12:33:54+00:00","dateModified":"2026-07-13T13:40:59+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\/2026\/05\/Cover-Page-22nd-Magazine-1.jpg","contentUrl":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1.jpg","width":520,"height":696},{"@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":49224,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages\/12631\/revisions\/49224"}],"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}]}}