{"id":7,"date":"2024-07-13T17:38:40","date_gmt":"2024-07-13T17:38:40","guid":{"rendered":"https:\/\/radio.djena.tg\/live\/?page_id=7"},"modified":"2025-03-15T10:49:26","modified_gmt":"2025-03-15T10:49:26","slug":"accueil","status":"publish","type":"page","link":"https:\/\/radio.djena.tg\/live\/","title":{"rendered":"Accueil"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"7\" class=\"elementor elementor-7\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7701063c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"7701063c\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-578c4780 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child\" data-id=\"578c4780\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInLeft&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c688b62 elementor-widget elementor-widget-html\" data-id=\"c688b62\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<!DOCTYPE html>\r\n<html lang=\"fr\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>Player Radio by OTIYA<\/title>\r\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@400;600&display=swap\" rel=\"stylesheet\">\r\n    <style>\r\n        body {\r\n            font-family: 'Montserrat', sans-serif;\r\n            margin: 0;\r\n            padding: 0;\r\n            text-align: center;\r\n        }\r\n        .player-container {\r\n            background: #344A7E;\r\n            color: white;\r\n            width: 300px;\r\n            height: 320px;\r\n            border-radius: 8px;\r\n            display: flex;\r\n            flex-direction: column;\r\n            align-items: center;\r\n            justify-content: center;\r\n            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);\r\n            margin: 0 auto;\r\n            position: relative;\r\n        }\r\n        .player-logo img {\r\n            width: 80px;\r\n            height: 80px;\r\n            border-radius: 5px;\r\n        }\r\n        .player-info {\r\n            text-align: center;\r\n            margin-top: 10px;\r\n        }\r\n        .player-info p {\r\n            margin: 5px 0;\r\n            font-size: 14px;\r\n        }\r\n        .controls {\r\n            display: flex;\r\n            align-items: center;\r\n            margin-top: 10px;\r\n            position: relative;\r\n        }\r\n        .control-button {\r\n            background: none;\r\n            border: none;\r\n            color: white;\r\n            font-size: 24px;\r\n            cursor: pointer;\r\n            margin: 0 10px;\r\n            transition: color 0.2s;\r\n        }\r\n        .control-button:hover {\r\n            color: #f1c40f;\r\n        }\r\n        .volume-container {\r\n            display: none;\r\n            position: absolute;\r\n            bottom: -40px;\r\n            left: 50%;\r\n            transform: translateX(-50%);\r\n        }\r\n        .volume-slider {\r\n            width: 100px;\r\n        }\r\n        .signature {\r\n            font-size: 10px;\r\n            text-align: center;\r\n            color: white;\r\n            margin-top: 10px;\r\n        }\r\n        .signature a {\r\n            color: inherit;\r\n            text-decoration: none;\r\n            font-weight: normal;\r\n        }\r\n        .signature a:hover {\r\n            color: red;\r\n        }\r\n    <\/style>\r\n<\/head>\r\n<body>\r\n    <div class=\"player-container\">\r\n        <div class=\"player-logo\">\r\n            <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/radio.djena.tg\/wp-content\/uploads\/2025\/03\/LOGO-RADIO-DJENA.NEW_.png?ssl=1\" alt=\"Logo Radio\">\r\n        <\/div>\r\n        <div class=\"player-info\">\r\n            <p><strong>RADIO DJENA<\/strong><\/p>\r\n            <p>En direct<\/p>\r\n        <\/div>\r\n        <div class=\"controls\">\r\n            <button id=\"playPause\" class=\"control-button\">\u25b6\ufe0f<\/button>\r\n            <button id=\"volumeButton\" class=\"control-button\">\ud83d\udd0a<\/button>\r\n            <div class=\"volume-container\" id=\"volumeContainer\">\r\n                <input type=\"range\" id=\"volumeSlider\" class=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.1\" value=\"1\">\r\n            <\/div>\r\n        <\/div>\r\n        <audio id=\"audio\" src=\"https:\/\/usa18.fastcast4u.com\/proxy\/djena?mp=\/1\" autoplay loop><\/audio>\r\n        <div class=\"signature\">\r\n            <a href=\"https:\/\/wa.me\/22890159902\" target=\"_blank\">D\u00e9velopp\u00e9 par OTIYA<\/a>\r\n        <\/div>\r\n    <\/div>\r\n    <script>\r\n        const audio = document.getElementById(\"audio\");\r\n        const playPause = document.getElementById(\"playPause\");\r\n        const volumeButton = document.getElementById(\"volumeButton\");\r\n        const volumeContainer = document.getElementById(\"volumeContainer\");\r\n        const volumeSlider = document.getElementById(\"volumeSlider\");\r\n\r\n        playPause.addEventListener(\"click\", () => {\r\n            if (audio.paused) {\r\n                audio.play();\r\n                playPause.textContent = \"\u23f8\ufe0f\";\r\n            } else {\r\n                audio.pause();\r\n                playPause.textContent = \"\u25b6\ufe0f\";\r\n            }\r\n        });\r\n\r\n        volumeButton.addEventListener(\"click\", () => {\r\n            volumeContainer.style.display = volumeContainer.style.display === \"block\" ? \"none\" : \"block\";\r\n        });\r\n\r\n        volumeSlider.addEventListener(\"input\", () => {\r\n            audio.volume = volumeSlider.value;\r\n        });\r\n    <\/script>\r\n<\/body>\r\n<\/html>\r\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-498a2185 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no elementor-invisible e-con e-child\" data-id=\"498a2185\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInRight&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-738d0c1b elementor-widget elementor-widget-heading\" data-id=\"738d0c1b\" 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\">On air<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48254ed6 elementor-widget elementor-widget-text-editor\" data-id=\"48254ed6\" 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>Chaque jour, Radio Djena p\u00e9n\u00e8tre les m\u00e9nages \u00e0 travers le web en leur apportant le sourire \u00e0 travers les informations et le divertissement.<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8ac3ed0 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"8ac3ed0\" 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<div class=\"elementor-element elementor-element-4075f7e e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"4075f7e\" data-element_type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-969410b e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"969410b\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a373dce elementor-widget elementor-widget-heading\" data-id=\"a373dce\" 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\">Entrepreneur shop<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4b89b0f e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"4b89b0f\" data-element_type=\"container\">\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-cbb3896 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"cbb3896\" 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-07e70da elementor-widget elementor-widget-eael-woo-product-carousel\" data-id=\"07e70da\" data-element_type=\"widget\" data-widget_type=\"eael-woo-product-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\n        <div class=\"swiper-container-wrap eael-woo-product-carousel-container preset-1 swiper-container-wrap-dots-outside\" id=\"eael-product-carousel-07e70da\" data-widget-id=\"07e70da\" >\n            <div class=\"woocommerce swiper swiper-8 eael-woo-product-carousel swiper-container-07e70da eael-product-appender-07e70da eael-static-buttons swiper-image-stretch\" data-pagination=\".swiper-pagination-07e70da\" data-arrow-next=\".swiper-button-next-07e70da\" data-arrow-prev=\".swiper-button-prev-07e70da\" data-type=\"preset-1\" data-effect=\"slide\" data-items=\"3\" data-slide-items=\"1\" data-items-mobile=\"1\" data-margin=\"10\" data-speed=\"400\" data-autoplay=\"2000\" data-loop=\"1\" data-dots=\"1\"><ul class=\"swiper-wrapper products\">    <li class=\"product swiper-slide post-287 type-product status-publish has-post-thumbnail product_cat-entrepreneur-shop desktop-align-left tablet-align-left mobile-align-left first instock sale shipping-taxable purchasable product-type-simple\">\n        <div class=\"eael-product-carousel \">\n            <div class=\"product-image-wrap\">\n                <div class=\"image-wrap\">\n                    <span class=\"eael-onsale sale-preset-1 \">Disponible<\/span><a href=\"https:\/\/radio.djena.tg\/live\/produit\/moccasin-2-odah-shoes\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img fetchpriority=\"high\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/3.jpg?fit=300%2C300&amp;ssl=1\" class=\"attachment-medium size-medium\" alt=\"\" loading=\"eager\" srcset=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/3.jpg?w=512&amp;ssl=1 512w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/3.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/3.jpg?resize=150%2C150&amp;ssl=1 150w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/3.jpg?resize=100%2C100&amp;ssl=1 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>                <\/div>\n                <div class=\"image-hover-wrap\">\n                    <ul class=\"icons-wrap box-style\">\n                                                                            <li class=\"eael-product-quick-view\">\n                                <a id=\"eael_quick_view_69e382a05a398\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;07e70da&quot;,&quot;product_id&quot;:287,&quot;page_id&quot;:7}\"\n                                    class=\"open-popup-link\">\n                                    <i class=\"fas fa-eye\"><\/i>\n                                <\/a>\n                            <\/li>\n                                                <li class=\"view-details\" title=\"Details\"><a href=\"https:\/\/radio.djena.tg\/live\/produit\/moccasin-2-odah-shoes\/\"><i class=\"fas fa-link\"><\/i><\/a><\/li>\n                    <\/ul>\n                                    <\/div>\n            <\/div>\n            <div class=\"product-details-wrap\">\n                <div class=\"product-details\">\n                    <div class=\"eael-product-title\"><h2>Moccasin 2 \u2013 Odah Shoes<\/h2><\/div>\n                <\/div>\n                <div class=\"eael-product-price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>1.450.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/del> <span class=\"screen-reader-text\">Original price was: 1.450.000CFA.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>135.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/ins><span class=\"screen-reader-text\">Current price is: 135.000CFA.<\/span><\/div>            <\/div>\n        <\/div>\n    <\/li>\n        <li class=\"product swiper-slide post-285 type-product status-publish has-post-thumbnail product_cat-entrepreneur-shop desktop-align-left tablet-align-left mobile-align-left  instock sale shipping-taxable purchasable product-type-simple\">\n        <div class=\"eael-product-carousel \">\n            <div class=\"product-image-wrap\">\n                <div class=\"image-wrap\">\n                    <span class=\"eael-onsale sale-preset-1 \">Disponible<\/span><a href=\"https:\/\/radio.djena.tg\/live\/produit\/ferme-lacets-odah-shoes\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/5.jpg?fit=300%2C300&amp;ssl=1\" class=\"attachment-medium size-medium\" alt=\"\" loading=\"eager\" srcset=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/5.jpg?w=512&amp;ssl=1 512w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/5.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/5.jpg?resize=150%2C150&amp;ssl=1 150w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/5.jpg?resize=100%2C100&amp;ssl=1 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>                <\/div>\n                <div class=\"image-hover-wrap\">\n                    <ul class=\"icons-wrap box-style\">\n                                                                            <li class=\"eael-product-quick-view\">\n                                <a id=\"eael_quick_view_69e382a05aa71\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;07e70da&quot;,&quot;product_id&quot;:285,&quot;page_id&quot;:7}\"\n                                    class=\"open-popup-link\">\n                                    <i class=\"fas fa-eye\"><\/i>\n                                <\/a>\n                            <\/li>\n                                                <li class=\"view-details\" title=\"Details\"><a href=\"https:\/\/radio.djena.tg\/live\/produit\/ferme-lacets-odah-shoes\/\"><i class=\"fas fa-link\"><\/i><\/a><\/li>\n                    <\/ul>\n                                    <\/div>\n            <\/div>\n            <div class=\"product-details-wrap\">\n                <div class=\"product-details\">\n                    <div class=\"eael-product-title\"><h2>Ferme Lacets - Odah Shoes<\/h2><\/div>\n                <\/div>\n                <div class=\"eael-product-price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>150.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/del> <span class=\"screen-reader-text\">Original price was: 150.000CFA.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>135.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/ins><span class=\"screen-reader-text\">Current price is: 135.000CFA.<\/span><\/div>            <\/div>\n        <\/div>\n    <\/li>\n        <li class=\"product swiper-slide post-284 type-product status-publish has-post-thumbnail product_cat-entrepreneur-shop desktop-align-left tablet-align-left mobile-align-left  instock sale shipping-taxable purchasable product-type-simple\">\n        <div class=\"eael-product-carousel \">\n            <div class=\"product-image-wrap\">\n                <div class=\"image-wrap\">\n                    <span class=\"eael-onsale sale-preset-1 \">Disponible<\/span><a href=\"https:\/\/radio.djena.tg\/live\/produit\/moccasin-odah-shoes\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/4.jpg?fit=300%2C300&amp;ssl=1\" class=\"attachment-medium size-medium\" alt=\"\" loading=\"eager\" srcset=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/4.jpg?w=512&amp;ssl=1 512w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/4.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/4.jpg?resize=150%2C150&amp;ssl=1 150w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/4.jpg?resize=100%2C100&amp;ssl=1 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>                <\/div>\n                <div class=\"image-hover-wrap\">\n                    <ul class=\"icons-wrap box-style\">\n                                                                            <li class=\"eael-product-quick-view\">\n                                <a id=\"eael_quick_view_69e382a05b0c6\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;07e70da&quot;,&quot;product_id&quot;:284,&quot;page_id&quot;:7}\"\n                                    class=\"open-popup-link\">\n                                    <i class=\"fas fa-eye\"><\/i>\n                                <\/a>\n                            <\/li>\n                                                <li class=\"view-details\" title=\"Details\"><a href=\"https:\/\/radio.djena.tg\/live\/produit\/moccasin-odah-shoes\/\"><i class=\"fas fa-link\"><\/i><\/a><\/li>\n                    <\/ul>\n                                    <\/div>\n            <\/div>\n            <div class=\"product-details-wrap\">\n                <div class=\"product-details\">\n                    <div class=\"eael-product-title\"><h2>Moccasin - Odah Shoes<\/h2><\/div>\n                <\/div>\n                <div class=\"eael-product-price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>170.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/del> <span class=\"screen-reader-text\">Original price was: 170.000CFA.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>150.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/ins><span class=\"screen-reader-text\">Current price is: 150.000CFA.<\/span><\/div>            <\/div>\n        <\/div>\n    <\/li>\n        <li class=\"product swiper-slide post-275 type-product status-publish has-post-thumbnail product_cat-entrepreneur-shop desktop-align-left tablet-align-left mobile-align-left last instock sale shipping-taxable purchasable product-type-simple\">\n        <div class=\"eael-product-carousel \">\n            <div class=\"product-image-wrap\">\n                <div class=\"image-wrap\">\n                    <span class=\"eael-onsale sale-preset-1 \">Disponible<\/span><a href=\"https:\/\/radio.djena.tg\/live\/produit\/nu-pieds-hommes-odah-shoes\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/1.jpg?fit=300%2C300&amp;ssl=1\" class=\"attachment-medium size-medium\" alt=\"\" loading=\"eager\" srcset=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/1.jpg?w=512&amp;ssl=1 512w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/1.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/1.jpg?resize=150%2C150&amp;ssl=1 150w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/1.jpg?resize=100%2C100&amp;ssl=1 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>                <\/div>\n                <div class=\"image-hover-wrap\">\n                    <ul class=\"icons-wrap box-style\">\n                                                                            <li class=\"eael-product-quick-view\">\n                                <a id=\"eael_quick_view_69e382a05b70a\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;07e70da&quot;,&quot;product_id&quot;:275,&quot;page_id&quot;:7}\"\n                                    class=\"open-popup-link\">\n                                    <i class=\"fas fa-eye\"><\/i>\n                                <\/a>\n                            <\/li>\n                                                <li class=\"view-details\" title=\"Details\"><a href=\"https:\/\/radio.djena.tg\/live\/produit\/nu-pieds-hommes-odah-shoes\/\"><i class=\"fas fa-link\"><\/i><\/a><\/li>\n                    <\/ul>\n                                    <\/div>\n            <\/div>\n            <div class=\"product-details-wrap\">\n                <div class=\"product-details\">\n                    <div class=\"eael-product-title\"><h2>Nu-pieds hommes - Odah Shoes<\/h2><\/div>\n                <\/div>\n                <div class=\"eael-product-price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>30.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/del> <span class=\"screen-reader-text\">Original price was: 30.000CFA.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>25.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/ins><span class=\"screen-reader-text\">Current price is: 25.000CFA.<\/span><\/div>            <\/div>\n        <\/div>\n    <\/li>\n    <\/ul><\/div>            <!-- Add Pagination -->\n            <div class=\"swiper-pagination swiper-pagination-07e70da dots-preset-4\"><\/div>\n                <\/div>\n        \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-cabb67a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"cabb67a\" 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<div class=\"elementor-element elementor-element-3884094 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"3884094\" data-element_type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5c597ad e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"5c597ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bfa3440 elementor-widget elementor-widget-heading\" data-id=\"bfa3440\" 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\">Radio Shop<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1696a55 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"1696a55\" data-element_type=\"container\">\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-5cc22b8 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"5cc22b8\" 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-47f6748 elementor-widget elementor-widget-eael-woo-product-carousel\" data-id=\"47f6748\" data-element_type=\"widget\" data-widget_type=\"eael-woo-product-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\n        <div class=\"swiper-container-wrap eael-woo-product-carousel-container preset-1 swiper-container-wrap-dots-outside\" id=\"eael-product-carousel-47f6748\" data-widget-id=\"47f6748\" >\n            <div class=\"woocommerce swiper swiper-8 eael-woo-product-carousel swiper-container-47f6748 eael-product-appender-47f6748 eael-static-buttons swiper-image-stretch\" data-pagination=\".swiper-pagination-47f6748\" data-arrow-next=\".swiper-button-next-47f6748\" data-arrow-prev=\".swiper-button-prev-47f6748\" data-type=\"preset-1\" data-effect=\"slide\" data-items=\"3\" data-slide-items=\"1\" data-items-mobile=\"1\" data-margin=\"10\" data-speed=\"400\" data-autoplay=\"2000\" data-loop=\"1\" data-dots=\"1\"><ul class=\"swiper-wrapper products\">    <li class=\"product swiper-slide post-289 type-product status-publish has-post-thumbnail product_cat-radio-shop desktop-align-left tablet-align-left mobile-align-left first instock sale shipping-taxable purchasable product-type-simple\">\n        <div class=\"eael-product-carousel \">\n            <div class=\"product-image-wrap\">\n                <div class=\"image-wrap\">\n                    <span class=\"eael-onsale sale-preset-1 \">Disponible<\/span><a href=\"https:\/\/radio.djena.tg\/live\/produit\/porte-cle-radio-djena\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/6.jpg?fit=300%2C300&amp;ssl=1\" class=\"attachment-medium size-medium\" alt=\"\" loading=\"eager\" srcset=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/6.jpg?w=512&amp;ssl=1 512w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/6.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/6.jpg?resize=150%2C150&amp;ssl=1 150w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/6.jpg?resize=100%2C100&amp;ssl=1 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>                <\/div>\n                <div class=\"image-hover-wrap\">\n                    <ul class=\"icons-wrap box-style\">\n                                                                            <li class=\"eael-product-quick-view\">\n                                <a id=\"eael_quick_view_69e382a05da4a\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;47f6748&quot;,&quot;product_id&quot;:289,&quot;page_id&quot;:7}\"\n                                    class=\"open-popup-link\">\n                                    <i class=\"fas fa-eye\"><\/i>\n                                <\/a>\n                            <\/li>\n                                                <li class=\"view-details\" title=\"Details\"><a href=\"https:\/\/radio.djena.tg\/live\/produit\/porte-cle-radio-djena\/\"><i class=\"fas fa-link\"><\/i><\/a><\/li>\n                    <\/ul>\n                                    <\/div>\n            <\/div>\n            <div class=\"product-details-wrap\">\n                <div class=\"product-details\">\n                    <div class=\"eael-product-title\"><h2>Porte Cl\u00e9 Radio Djena<\/h2><\/div>\n                <\/div>\n                <div class=\"eael-product-price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>1.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/del> <span class=\"screen-reader-text\">Original price was: 1.000CFA.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>500<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/ins><span class=\"screen-reader-text\">Current price is: 500CFA.<\/span><\/div>            <\/div>\n        <\/div>\n    <\/li>\n        <li class=\"product swiper-slide post-288 type-product status-publish has-post-thumbnail product_cat-radio-shop desktop-align-left tablet-align-left mobile-align-left  instock sale shipping-taxable purchasable product-type-simple\">\n        <div class=\"eael-product-carousel \">\n            <div class=\"product-image-wrap\">\n                <div class=\"image-wrap\">\n                    <span class=\"eael-onsale sale-preset-1 \">Disponible<\/span><a href=\"https:\/\/radio.djena.tg\/live\/produit\/tasse-radio-djena\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/7.jpg?fit=300%2C300&amp;ssl=1\" class=\"attachment-medium size-medium\" alt=\"\" loading=\"eager\" srcset=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/7.jpg?w=512&amp;ssl=1 512w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/7.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/7.jpg?resize=150%2C150&amp;ssl=1 150w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/10\/7.jpg?resize=100%2C100&amp;ssl=1 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>                <\/div>\n                <div class=\"image-hover-wrap\">\n                    <ul class=\"icons-wrap box-style\">\n                                                                            <li class=\"eael-product-quick-view\">\n                                <a id=\"eael_quick_view_69e382a05e0c2\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;47f6748&quot;,&quot;product_id&quot;:288,&quot;page_id&quot;:7}\"\n                                    class=\"open-popup-link\">\n                                    <i class=\"fas fa-eye\"><\/i>\n                                <\/a>\n                            <\/li>\n                                                <li class=\"view-details\" title=\"Details\"><a href=\"https:\/\/radio.djena.tg\/live\/produit\/tasse-radio-djena\/\"><i class=\"fas fa-link\"><\/i><\/a><\/li>\n                    <\/ul>\n                                    <\/div>\n            <\/div>\n            <div class=\"product-details-wrap\">\n                <div class=\"product-details\">\n                    <div class=\"eael-product-title\"><h2>Tasse Radio Djena<\/h2><\/div>\n                <\/div>\n                <div class=\"eael-product-price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>7.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/del> <span class=\"screen-reader-text\">Original price was: 7.000CFA.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>5.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/ins><span class=\"screen-reader-text\">Current price is: 5.000CFA.<\/span><\/div>            <\/div>\n        <\/div>\n    <\/li>\n        <li class=\"product swiper-slide post-239 type-product status-publish has-post-thumbnail product_cat-radio-shop desktop-align-left tablet-align-left mobile-align-left  instock sale shipping-taxable purchasable product-type-simple\">\n        <div class=\"eael-product-carousel \">\n            <div class=\"product-image-wrap\">\n                <div class=\"image-wrap\">\n                    <span class=\"eael-onsale sale-preset-1 \">Disponible<\/span><a href=\"https:\/\/radio.djena.tg\/live\/produit\/tricot-radio-djena\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/4.jpg?fit=300%2C300&amp;ssl=1\" class=\"attachment-medium size-medium\" alt=\"\" loading=\"eager\" srcset=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/4.jpg?w=512&amp;ssl=1 512w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/4.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/4.jpg?resize=150%2C150&amp;ssl=1 150w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/4.jpg?resize=100%2C100&amp;ssl=1 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>                <\/div>\n                <div class=\"image-hover-wrap\">\n                    <ul class=\"icons-wrap box-style\">\n                                                                            <li class=\"eael-product-quick-view\">\n                                <a id=\"eael_quick_view_69e382a05e6eb\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;47f6748&quot;,&quot;product_id&quot;:239,&quot;page_id&quot;:7}\"\n                                    class=\"open-popup-link\">\n                                    <i class=\"fas fa-eye\"><\/i>\n                                <\/a>\n                            <\/li>\n                                                <li class=\"view-details\" title=\"Details\"><a href=\"https:\/\/radio.djena.tg\/live\/produit\/tricot-radio-djena\/\"><i class=\"fas fa-link\"><\/i><\/a><\/li>\n                    <\/ul>\n                                    <\/div>\n            <\/div>\n            <div class=\"product-details-wrap\">\n                <div class=\"product-details\">\n                    <div class=\"eael-product-title\"><h2>Tricot Radio Djena<\/h2><\/div>\n                <\/div>\n                <div class=\"eael-product-price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>5.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/del> <span class=\"screen-reader-text\">Original price was: 5.000CFA.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>3.500<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/ins><span class=\"screen-reader-text\">Current price is: 3.500CFA.<\/span><\/div>            <\/div>\n        <\/div>\n    <\/li>\n        <li class=\"product swiper-slide post-238 type-product status-publish has-post-thumbnail product_cat-radio-shop desktop-align-left tablet-align-left mobile-align-left last instock sale shipping-taxable purchasable product-type-simple\">\n        <div class=\"eael-product-carousel \">\n            <div class=\"product-image-wrap\">\n                <div class=\"image-wrap\">\n                    <span class=\"eael-onsale sale-preset-1 \">Disponible<\/span><a href=\"https:\/\/radio.djena.tg\/live\/produit\/polo-radio-djena\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/5.jpg?fit=300%2C300&amp;ssl=1\" class=\"attachment-medium size-medium\" alt=\"\" loading=\"eager\" srcset=\"https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/5.jpg?w=512&amp;ssl=1 512w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/5.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/5.jpg?resize=150%2C150&amp;ssl=1 150w, https:\/\/i0.wp.com\/radio.djena.tg\/live\/wp-content\/uploads\/2024\/09\/5.jpg?resize=100%2C100&amp;ssl=1 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>                <\/div>\n                <div class=\"image-hover-wrap\">\n                    <ul class=\"icons-wrap box-style\">\n                                                                            <li class=\"eael-product-quick-view\">\n                                <a id=\"eael_quick_view_69e382a05ed1f\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;47f6748&quot;,&quot;product_id&quot;:238,&quot;page_id&quot;:7}\"\n                                    class=\"open-popup-link\">\n                                    <i class=\"fas fa-eye\"><\/i>\n                                <\/a>\n                            <\/li>\n                                                <li class=\"view-details\" title=\"Details\"><a href=\"https:\/\/radio.djena.tg\/live\/produit\/polo-radio-djena\/\"><i class=\"fas fa-link\"><\/i><\/a><\/li>\n                    <\/ul>\n                                    <\/div>\n            <\/div>\n            <div class=\"product-details-wrap\">\n                <div class=\"product-details\">\n                    <div class=\"eael-product-title\"><h2>Polo Radio Djena<\/h2><\/div>\n                <\/div>\n                <div class=\"eael-product-price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>10.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/del> <span class=\"screen-reader-text\">Original price was: 10.000CFA.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>8.000<span class=\"woocommerce-Price-currencySymbol\">CFA<\/span><\/bdi><\/span><\/ins><span class=\"screen-reader-text\">Current price is: 8.000CFA.<\/span><\/div>            <\/div>\n        <\/div>\n    <\/li>\n    <\/ul><\/div>            <!-- Add Pagination -->\n            <div class=\"swiper-pagination swiper-pagination-47f6748 dots-preset-4\"><\/div>\n                <\/div>\n        \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-4091b01 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"4091b01\" 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-e687063 elementor-widget elementor-widget-spacer\" data-id=\"e687063\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\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<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Player Radio by OTIYA RADIO DJENA En direct \u25b6\ufe0f \ud83d\udd0a D\u00e9velopp\u00e9 par OTIYA On air Chaque jour, Radio Djena p\u00e9n\u00e8tre les m\u00e9nages \u00e0 travers le web en leur apportant le sourire \u00e0 travers les informations et le divertissement. Entrepreneur shop Disponible Moccasin 2 \u2013 Odah Shoes 1.450.000CFA Original price was: 1.450.000CFA.135.000CFACurrent price is: 135.000CFA. Disponible Ferme Lacets &#8211; Odah Shoes 150.000CFA Original price was: 150.000CFA.135.000CFACurrent price is: 135.000CFA. Disponible Moccasin &#8211; Odah Shoes 170.000CFA Original price was: 170.000CFA.150.000CFACurrent price is: 150.000CFA. Disponible Nu-pieds hommes &#8211; Odah Shoes 30.000CFA Original price was: 30.000CFA.25.000CFACurrent price is: 25.000CFA. Radio Shop Disponible Porte Cl\u00e9 Radio Djena 1.000CFA Original price was: 1.000CFA.500CFACurrent price is: 500CFA. Disponible Tasse Radio Djena 7.000CFA Original price was: 7.000CFA.5.000CFACurrent price is: 5.000CFA. Disponible Tricot Radio Djena 5.000CFA Original price was: 5.000CFA.3.500CFACurrent price is: 3.500CFA. Disponible Polo Radio Djena 10.000CFA Original price was: 10.000CFA.8.000CFACurrent price is: 8.000CFA.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-7","page","type-page","status-publish","hentry","desktop-align-left","tablet-align-left","mobile-align-left"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/radio.djena.tg\/live\/wp-json\/wp\/v2\/pages\/7","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/radio.djena.tg\/live\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/radio.djena.tg\/live\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/radio.djena.tg\/live\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/radio.djena.tg\/live\/wp-json\/wp\/v2\/comments?post=7"}],"version-history":[{"count":127,"href":"https:\/\/radio.djena.tg\/live\/wp-json\/wp\/v2\/pages\/7\/revisions"}],"predecessor-version":[{"id":318,"href":"https:\/\/radio.djena.tg\/live\/wp-json\/wp\/v2\/pages\/7\/revisions\/318"}],"wp:attachment":[{"href":"https:\/\/radio.djena.tg\/live\/wp-json\/wp\/v2\/media?parent=7"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}