{"id":1718,"date":"2025-04-03T13:42:50","date_gmt":"2025-04-03T13:42:50","guid":{"rendered":"http:\/\/trash-investigation.local\/events-grid-style\/"},"modified":"2025-04-25T09:14:15","modified_gmt":"2025-04-25T09:14:15","slug":"events-grid-style","status":"publish","type":"page","link":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/","title":{"rendered":"Billetterie"},"content":{"rendered":"                <div class='mage list_with_filter_section mep_event_list' id='mage-container'>\n\t\t\t\t\tIl n&#039;y a actuellement aucun \u00e9v\u00e9nement programm\u00e9.                <\/div>\n                <script data-jetpack-boost=\"ignore\">\n                    jQuery(document).ready(function () {\n                        var containerEl = document.querySelector('#mep_event_list_abr6a6a910d2b135');\n                        var mixer = mixitup(containerEl, {\n                            selectors: {\n                                target: '.mep-event-list-loop',\n                                control: '[data-mixitup-control]'\n                            }\n                        });\n                        \/\/ Handle title filter input\n                        jQuery('input[name=\"filter_with_title\"]').on('keyup', function () {\n                            var searchText = jQuery(this).val().toLowerCase();\n                            var items = jQuery('.mep-event-list-loop');\n                            items.each(function () {\n                                var itemTitle = jQuery(this).data('title').toLowerCase();\n                                if (itemTitle.indexOf(searchText) > -1) {\n                                    jQuery(this).show();\n                                } else {\n                                    jQuery(this).hide();\n                                }\n                            });\n                        });\n                        \/\/ Handle date filter change\n                        jQuery('input[name=\"filter_with_date\"]').on('change', function () {\n                            var selectedDate = jQuery(this).val();\n                            var items = jQuery('.mep-event-list-loop');\n                            if (!selectedDate) {\n                                items.show();\n                            } else {\n                                var filterDate = new Date(selectedDate);\n                                filterDate.setHours(0, 0, 0, 0); \/\/ Reset time part for date comparison\n                                items.each(function () {\n                                    var itemDate = new Date(jQuery(this).data('date'));\n                                    itemDate.setHours(0, 0, 0, 0); \/\/ Reset time part for date comparison\n                                    if (itemDate.getTime() === filterDate.getTime()) {\n                                        jQuery(this).show();\n                                    } else {\n                                        jQuery(this).hide();\n                                    }\n                                });\n                            }\n                        });\n                        \/\/ Handle state filter change\n                        jQuery('select[name=\"filter_with_state\"]').on('change', function () {\n                            var state = jQuery(this).val();\n                            var items = jQuery('.mep-event-list-loop');\n                            if (state === '') {\n                                items.show();\n                            } else {\n                                items.each(function () {\n                                    var itemState = jQuery(this).data('state');\n                                    if (itemState === state) {\n                                        jQuery(this).show();\n                                    } else {\n                                        jQuery(this).hide();\n                                    }\n                                });\n                            }\n                        });\n                        \/\/ Handle city filter change\n                        jQuery('select[name=\"filter_with_city\"]').on('change', function () {\n                            applyAllFilters();\n                        });\n                        \/\/ Handle category filter change\n                        jQuery('select[name=\"filter_with_category\"]').on('change', function () {\n                            applyAllFilters();\n                        });\n                        \/\/ Handle organizer filter change\n                        jQuery('select[name=\"filter_with_organizer\"]').on('change', function () {\n                            applyAllFilters();\n                        });\n                        \/\/ Combined filter function that applies all filters\n                        function applyAllFilters() {\n                            var titleFilter = jQuery('input[name=\"filter_with_title\"]').val().toLowerCase();\n                            var dateFilter = jQuery('input[name=\"filter_with_date\"]').val();\n                            var startDateFilter = jQuery('input[name=\"filter_with_start_date\"]').val();\n                            var endDateFilter = jQuery('input[name=\"filter_with_end_date\"]').val();\n                            var stateFilter = jQuery('select[name=\"filter_with_state\"]').val();\n                            var cityFilter = jQuery('select[name=\"filter_with_city\"]').val();\n                            var categoryFilter = jQuery('select[name=\"filter_with_category\"]').val();\n                            var organizerFilter = jQuery('select[name=\"filter_with_organizer\"]').val();\n                            var visibleCount = 0;\n                            jQuery('.mep-event-list-loop').each(function () {\n                                var $item = jQuery(this);\n                                var show = true;\n                                \/\/ Title filter\n                                if (titleFilter) {\n                                    var itemTitle = ($item.data('title') || '').toLowerCase();\n                                    if (itemTitle.indexOf(titleFilter) === -1) {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ Single Date filter (legacy)\n                                if (show && dateFilter) {\n                                    var itemDate = $item.data('date');\n                                    if (itemDate) {\n                                        var filterDate = new Date(dateFilter);\n                                        filterDate.setHours(0, 0, 0, 0);\n                                        var itemDateObj = new Date(itemDate);\n                                        itemDateObj.setHours(0, 0, 0, 0);\n                                        if (itemDateObj.getTime() !== filterDate.getTime()) {\n                                            show = false;\n                                        }\n                                    } else {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ Date Range filter\n                                if (show && (startDateFilter || endDateFilter)) {\n                                    var itemDate = $item.data('date');\n                                    if (itemDate) {\n                                        var itemDateObj = new Date(itemDate);\n                                        itemDateObj.setHours(0, 0, 0, 0);\n                                        if (startDateFilter) {\n                                            var startDate = new Date(startDateFilter);\n                                            startDate.setHours(0, 0, 0, 0);\n                                            if (itemDateObj < startDate) {\n                                                show = false;\n                                            }\n                                        }\n                                        if (endDateFilter) {\n                                            var endDate = new Date(endDateFilter);\n                                            endDate.setHours(0, 0, 0, 0);\n                                            if (itemDateObj > endDate) {\n                                                show = false;\n                                            }\n                                        }\n                                    } else {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ State filter\n                                if (show && stateFilter) {\n                                    var itemState = $item.data('state') || '';\n                                    if (itemState !== stateFilter) {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ City filter\n                                if (show && cityFilter) {\n                                    var itemCity = $item.data('city-name') || '';\n                                    if (itemCity !== cityFilter) {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ Category filter\n                                if (show && categoryFilter) {\n                                    var itemCategory = $item.data('category') || '';\n                                    var itemCategories = itemCategory.split(',').map(function (c) {\n                                        return c.trim();\n                                    });\n                                    if (itemCategories.indexOf(categoryFilter) === -1) {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ Organizer filter\n                                if (show && organizerFilter) {\n                                    var itemOrganizer = $item.data('organizer') || '';\n                                    var itemOrganizers = itemOrganizer.split(',').map(function (o) {\n                                        return o.trim();\n                                    });\n                                    if (itemOrganizers.indexOf(organizerFilter) === -1) {\n                                        show = false;\n                                    }\n                                }\n                                if (show) {\n                                    $item.show();\n                                    visibleCount++;\n                                } else {\n                                    $item.hide();\n                                }\n                            });\n                            jQuery('.qty_count').text(visibleCount);\n                        }\n                        jQuery('input[name=\"filter_with_title\"]').off('keyup').on('keyup', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('input[name=\"filter_with_date\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('input[name=\"filter_with_start_date\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('input[name=\"filter_with_end_date\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('select[name=\"filter_with_state\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('select[name=\"filter_with_city\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('select[name=\"filter_with_category\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('select[name=\"filter_with_organizer\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n\t\t\t\t\t\t                    });\n                <\/script>\n                \n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"class_list":["post-1718","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Choisis ton cr\u00e9neau, r\u00e9serve ta place et entre dans l\u2019univers de Trash Investigation. Les enqu\u00eates n\u2019attendent pas\u2026 et les places non plus.\" \/>\n\t<meta name=\"robots\" content=\"noindex, nofollow, max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Trash Investigation -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Billetterie \u2013 R\u00e9serve ta mission maintenant\" \/>\n\t\t<meta property=\"og:description\" content=\"Choisis ton cr\u00e9neau, r\u00e9serve ta place et entre dans l\u2019univers de Trash Investigation. Les enqu\u00eates n\u2019attendent pas\u2026 et les places non plus.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-content\/uploads\/2025\/03\/cropped-ccrPlan-de-travail-326-copie-24.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-content\/uploads\/2025\/03\/cropped-ccrPlan-de-travail-326-copie-24.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-04-03T13:42:50+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-04-25T09:14:15+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Billetterie \u2013 R\u00e9serve ta mission maintenant\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Choisis ton cr\u00e9neau, r\u00e9serve ta place et entre dans l\u2019univers de Trash Investigation. Les enqu\u00eates n\u2019attendent pas\u2026 et les places non plus.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-content\/uploads\/2025\/03\/cropped-ccrPlan-de-travail-326-copie-24.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/events-grid-style\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/events-grid-style\\\/#listItem\",\"name\":\"Billetterie\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/events-grid-style\\\/#listItem\",\"position\":2,\"name\":\"Billetterie\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/#organization\",\"name\":\"Trash Investigation Trash Investigation\",\"url\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/\",\"telephone\":\"+33325649135\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/test.local\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/cropped-ccrPlan-de-travail-326-copie-24.png\",\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/events-grid-style\\\/#organizationLogo\"},\"image\":{\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/events-grid-style\\\/#organizationLogo\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/events-grid-style\\\/#webpage\",\"url\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/events-grid-style\\\/\",\"name\":\"Billetterie \\u2013 R\\u00e9serve ta mission maintenant\",\"description\":\"Choisis ton cr\\u00e9neau, r\\u00e9serve ta place et entre dans l\\u2019univers de Trash Investigation. Les enqu\\u00eates n\\u2019attendent pas\\u2026 et les places non plus.\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/events-grid-style\\\/#breadcrumblist\"},\"datePublished\":\"2025-04-03T13:42:50+00:00\",\"dateModified\":\"2025-04-25T09:14:15+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/#website\",\"url\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/\",\"name\":\"Trash Investigation\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/formagraph-exercice.fr\\\/trash-investigation\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Billetterie \u2013 R\u00e9serve ta mission maintenant","description":"Choisis ton cr\u00e9neau, r\u00e9serve ta place et entre dans l\u2019univers de Trash Investigation. Les enqu\u00eates n\u2019attendent pas\u2026 et les places non plus.","canonical_url":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/","robots":"noindex, nofollow, max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/formagraph-exercice.fr\/trash-investigation#listItem","position":1,"name":"Home","item":"https:\/\/formagraph-exercice.fr\/trash-investigation","nextItem":{"@type":"ListItem","@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/#listItem","name":"Billetterie"}},{"@type":"ListItem","@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/#listItem","position":2,"name":"Billetterie","previousItem":{"@type":"ListItem","@id":"https:\/\/formagraph-exercice.fr\/trash-investigation#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/#organization","name":"Trash Investigation Trash Investigation","url":"https:\/\/formagraph-exercice.fr\/trash-investigation\/","telephone":"+33325649135","logo":{"@type":"ImageObject","url":"http:\/\/test.local\/wp-content\/uploads\/2025\/03\/cropped-ccrPlan-de-travail-326-copie-24.png","@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/#organizationLogo"},"image":{"@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/#organizationLogo"}},{"@type":"WebPage","@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/#webpage","url":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/","name":"Billetterie \u2013 R\u00e9serve ta mission maintenant","description":"Choisis ton cr\u00e9neau, r\u00e9serve ta place et entre dans l\u2019univers de Trash Investigation. Les enqu\u00eates n\u2019attendent pas\u2026 et les places non plus.","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/#website"},"breadcrumb":{"@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/#breadcrumblist"},"datePublished":"2025-04-03T13:42:50+00:00","dateModified":"2025-04-25T09:14:15+00:00"},{"@type":"WebSite","@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/#website","url":"https:\/\/formagraph-exercice.fr\/trash-investigation\/","name":"Trash Investigation","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/formagraph-exercice.fr\/trash-investigation\/#organization"}}]},"og:locale":"fr_FR","og:site_name":"Trash Investigation -","og:type":"article","og:title":"Billetterie \u2013 R\u00e9serve ta mission maintenant","og:description":"Choisis ton cr\u00e9neau, r\u00e9serve ta place et entre dans l\u2019univers de Trash Investigation. Les enqu\u00eates n\u2019attendent pas\u2026 et les places non plus.","og:url":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/","og:image":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-content\/uploads\/2025\/03\/cropped-ccrPlan-de-travail-326-copie-24.png","og:image:secure_url":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-content\/uploads\/2025\/03\/cropped-ccrPlan-de-travail-326-copie-24.png","article:published_time":"2025-04-03T13:42:50+00:00","article:modified_time":"2025-04-25T09:14:15+00:00","twitter:card":"summary_large_image","twitter:title":"Billetterie \u2013 R\u00e9serve ta mission maintenant","twitter:description":"Choisis ton cr\u00e9neau, r\u00e9serve ta place et entre dans l\u2019univers de Trash Investigation. Les enqu\u00eates n\u2019attendent pas\u2026 et les places non plus.","twitter:image":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-content\/uploads\/2025\/03\/cropped-ccrPlan-de-travail-326-copie-24.png"},"aioseo_meta_data":{"post_id":"1718","title":"Billetterie \u2013 R\u00e9serve ta mission maintenant","description":"Choisis ton cr\u00e9neau, r\u00e9serve ta place et entre dans l\u2019univers de Trash Investigation. Les enqu\u00eates n\u2019attendent pas\u2026 et les places non plus.","keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2025-04-03 13:56:58","updated":"2025-06-06 10:51:49","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/formagraph-exercice.fr\/trash-investigation\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tBilletterie\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/formagraph-exercice.fr\/trash-investigation"},{"label":"Billetterie","link":"https:\/\/formagraph-exercice.fr\/trash-investigation\/events-grid-style\/"}],"_links":{"self":[{"href":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-json\/wp\/v2\/pages\/1718","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-json\/wp\/v2\/comments?post=1718"}],"version-history":[{"count":1,"href":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-json\/wp\/v2\/pages\/1718\/revisions"}],"predecessor-version":[{"id":1898,"href":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-json\/wp\/v2\/pages\/1718\/revisions\/1898"}],"wp:attachment":[{"href":"https:\/\/formagraph-exercice.fr\/trash-investigation\/wp-json\/wp\/v2\/media?parent=1718"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}