

declare (strict_types=1);
namespace ElementorProDeps\DI;

use ElementorProDeps\DI\Definition\ArrayDefinitionExtension;
use ElementorProDeps\DI\Definition\EnvironmentVariableDefinition;
use ElementorProDeps\DI\Definition\Helper\AutowireDefinitionHelper;
use ElementorProDeps\DI\Definition\Helper\CreateDefinitionHelper;
use ElementorProDeps\DI\Definition\Helper\FactoryDefinitionHelper;
use ElementorProDeps\DI\Definition\Reference;
use ElementorProDeps\DI\Definition\StringDefinition;
use ElementorProDeps\DI\Definition\ValueDefinition;
if (!\function_exists('ElementorProDeps\\DI\\value')) {
    /**
     * Helper for defining a value.
     *
     * @param mixed $value
     */
    function value($value) : ValueDefinition
    {
        return new ValueDefinition($value);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\create')) {
    /**
     * Helper for defining an object.
     *
     * @param string|null $className Class name of the object.
     *                               If null, the name of the entry (in the container) will be used as class name.
     */
    function create(string $className = null) : CreateDefinitionHelper
    {
        return new CreateDefinitionHelper($className);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\autowire')) {
    /**
     * Helper for autowiring an object.
     *
     * @param string|null $className Class name of the object.
     *                               If null, the name of the entry (in the container) will be used as class name.
     */
    function autowire(string $className = null) : AutowireDefinitionHelper
    {
        return new AutowireDefinitionHelper($className);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\factory')) {
    /**
     * Helper for defining a container entry using a factory function/callable.
     *
     * @param callable $factory The factory is a callable that takes the container as parameter
     *                          and returns the value to register in the container.
     */
    function factory($factory) : FactoryDefinitionHelper
    {
        return new FactoryDefinitionHelper($factory);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\decorate')) {
    /**
     * Decorate the previous definition using a callable.
     *
     * Example:
     *
     *     'foo' => decorate(function ($foo, $container) {
     *         return new CachedFoo($foo, $container->get('cache'));
     *     })
     *
     * @param callable $callable The callable takes the decorated object as first parameter and
     *                           the container as second.
     */
    function decorate($callable) : FactoryDefinitionHelper
    {
        return new FactoryDefinitionHelper($callable, \true);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\get')) {
    /**
     * Helper for referencing another container entry in an object definition.
     */
    function get(string $entryName) : Reference
    {
        return new Reference($entryName);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\env')) {
    /**
     * Helper for referencing environment variables.
     *
     * @param string $variableName The name of the environment variable.
     * @param mixed $defaultValue The default value to be used if the environment variable is not defined.
     */
    function env(string $variableName, $defaultValue = null) : EnvironmentVariableDefinition
    {
        // Only mark as optional if the default value was *explicitly* provided.
        $isOptional = 2 === \func_num_args();
        return new EnvironmentVariableDefinition($variableName, $isOptional, $defaultValue);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\add')) {
    /**
     * Helper for extending another definition.
     *
     * Example:
     *
     *     'log.backends' => DI\add(DI\get('My\Custom\LogBackend'))
     *
     * or:
     *
     *     'log.backends' => DI\add([
     *         DI\get('My\Custom\LogBackend')
     *     ])
     *
     * @param mixed|array $values A value or an array of values to add to the array.
     *
     * @since 5.0
     */
    function add($values) : ArrayDefinitionExtension
    {
        if (!\is_array($values)) {
            $values = [$values];
        }
        return new ArrayDefinitionExtension($values);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\string')) {
    /**
     * Helper for concatenating strings.
     *
     * Example:
     *
     *     'log.filename' => DI\string('{app.path}/app.log')
     *
     * @param string $expression A string expression. Use the `{}` placeholders to reference other container entries.
     *
     * @since 5.0
     */
    function string(string $expression) : StringDefinition
    {
        return new StringDefinition($expression);
    }
}
{"id":21788,"date":"2024-10-30T14:05:12","date_gmt":"2024-10-30T14:05:12","guid":{"rendered":"https:\/\/kolbepezeshk.ir\/?p=21788"},"modified":"2025-10-28T05:54:19","modified_gmt":"2025-10-28T05:54:19","slug":"hoe-je-een-effectieve-contentplanning-ontwikkelt-voor-de-nederlandse-markt-diepgaande-strategieen-en-praktische-stappen","status":"publish","type":"post","link":"https:\/\/kolbepezeshk.ir\/?p=21788","title":{"rendered":"Hoe je een effectieve contentplanning ontwikkelt voor de Nederlandse markt: diepgaande strategie\u00ebn en praktische stappen"},"content":{"rendered":"<h2 style=\"font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; color: #34495e;\">Inhoudsopgave<\/h2>\n<div style=\"margin-bottom: 30px;\">\n<ul style=\"list-style-type: decimal; padding-left: 20px; font-family: Arial, sans-serif; font-size: 1em; line-height: 1.5;\">\n<li><a href=\"#praktische-implementatie\" style=\"color: #2980b9; text-decoration: none;\">Praktische toepassing van de contentstrategie voor de Nederlandse markt<\/a><\/li>\n<li><a href=\"#data-gedreven-planning\" style=\"color: #2980b9; text-decoration: none;\">Data-gedreven contentplanning: specifiek inzetten op Nederlandse doelgroep<\/a><\/li>\n<li><a href=\"#contentcreatie-optimalisatie\" style=\"color: #2980b9; text-decoration: none;\">Contentcreatie en optimalisatie specifiek voor Nederland<\/a><\/li>\n<li><a href=\"#technische-implementatie\" style=\"color: #2980b9; text-decoration: none;\">Technische implementatie: van planning tot publicatie<\/a><\/li>\n<li><a href=\"#veelgemaakte-fouten\" style=\"color: #2980b9; text-decoration: none;\">Veelgemaakte fouten en hoe deze te voorkomen<\/a><\/li>\n<li><a href=\"#monitoring-bijsturen\" style=\"color: #2980b9; text-decoration: none;\">Monitoring en bijsturen van je Nederlandse contentstrategie<\/a><\/li>\n<li><a href=\"#merkbouwen\" style=\"color: #2980b9; text-decoration: none;\">Versterken van je positie en merkautoriteit in Nederland<\/a><\/li>\n<li><a href=\"#conclusie\" style=\"color: #2980b9; text-decoration: none;\">Conclusie: van planning naar succes in de Nederlandse markt<\/a><\/li>\n<\/ul>\n<\/div>\n<h2 id=\"praktische-implementatie\" style=\"font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; color: #34495e;\">Praktische toepassing van de contentstrategie voor de Nederlandse markt<\/h2>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Het vertalen van strategische doelen naar concrete contentactiviteiten vereist een gestructureerde aanpak die specifiek inspeelt op de Nederlandse markt. Begin met het helder formuleren van je bedrijfsdoelstellingen, zoals merkbekendheid vergroten of leadgeneratie, en vertaal deze naar meetbare contentdoelen. Bijvoorbeeld: als je Nederlandse merkbekendheid wilt versterken, focus dan op het cre\u00ebren van lokale verhalen en samenwerkingen die resoneren met de Nederlandse cultuur.<\/p>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Gebruik tools zoals <strong>Coosto<\/strong>, <strong>Contentful<\/strong> en <strong>Google Calendar<\/strong> om je planning overzichtelijk te krijgen en te beheren. Deze platforms ondersteunen je bij het plannen, automatiseren en monitoren van je contentactiviteiten binnen de Nederlandse digitale infrastructuur. Bijvoorbeeld, met Coosto kun je social media campagnes inplannen rond Nederlandse feestdagen en seizoenen, waardoor je content relevant en actueel blijft.<\/p>\n<h3 style=\"font-size: 1.3em; margin-top: 25px; margin-bottom: 10px; color: #2c3e50;\">Stap-voor-stap plan voor een Nederlandse contentkalender<\/h3>\n<ol style=\"padding-left: 20px; font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6;\">\n<li><strong>Stap 1:<\/strong> Identificeer relevante Nederlandse feestdagen en seizoenen, zoals Koningsdag, Sinterklaas, en de zomer- en winterperiodes.<\/li>\n<li><strong>Stap 2:<\/strong> Plan campagnes rond deze data, inclusief speciale promoties, contentthema\u2019s en influencer-samenwerkingen.<\/li>\n<li><strong>Stap 3:<\/strong> Gebruik een contentkalendertool om deze data te visualiseren en te koppelen aan specifieke contentformats en publicatietijden.<\/li>\n<li><strong>Stap 4:<\/strong> Automatiseer je publicatie en controleer de voortgang via tools zoals Contentful of Coosto.<\/li>\n<\/ol>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6;\">Door deze gestructureerde aanpak zorg je dat je content niet alleen consistent is, maar ook inspeelt op de actuele Nederlandse feestdagen en seizoensgebonden trends, wat de betrokkenheid verhoogt en de conversie stimuleert.<\/p>\n<h2 id=\"data-gedreven-planning\" style=\"font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; color: #34495e;\">Data-gedreven contentplanning: specifiek inzetten op Nederlandse doelgroep<\/h2>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Het verzamelen en interpreteren van Nederlandse marktdata is cruciaal voor een effectieve contentstrategie. Gebruik <strong>Google Trends<\/strong> en <strong>social media-analyse<\/strong> tools zoals <strong>Brandwatch<\/strong> of <strong>BuzzSumo<\/strong> om te achterhalen welke <a href=\"https:\/\/church.ffsbcm.org\/hoe-inzicht-in-cascade-effecten-en-multipliers-je-strategisch-voordeel-vergroot\/\" target=\"_blank\" rel=\"noopener\">onder<\/a>werpen en hashtags populair zijn onder Nederlandse gebruikers. Bijvoorbeeld, tijdens Koningsdag zie je vaak een piek in zoekopdrachten naar &#8216;oranje&#8217; en &#8216;vrijmarkt&#8217;, die je direct kunt benutten voor relevante content.<\/p>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Daarnaast is het belangrijk om KPI\u2019s en metrics te bepalen die aansluiten bij je doelstellingen. Voor Nederlandse campagnes zijn bijvoorbeeld <strong>betrokkenheid<\/strong> (likes, shares, reacties), <strong>bereik<\/strong> en <strong>conversieratio<\/strong> essentieel. Het meten van deze KPI\u2019s met tools als <strong>Google Analytics<\/strong> en platform-specifieke dashboards geeft je inzicht in wat werkt en wat niet.<\/p>\n<h3 style=\"font-size: 1.3em; margin-top: 25px; margin-bottom: 10px; color: #2c3e50;\">Gebruik van Nederlandse trends in praktijk<\/h3>\n<table style=\"width: 100%; border-collapse: collapse; margin-bottom: 20px; font-family: Arial, sans-serif;\">\n<tr style=\"background-color: #ecf0f1;\">\n<th style=\"border: 1px solid #bdc3c7; padding: 8px; text-align: left;\">Datum<\/th>\n<th style=\"border: 1px solid #bdc3c7; padding: 8px; text-align: left;\">Trend\/ Thema<\/th>\n<th style=\"border: 1px solid #bdc3c7; padding: 8px; text-align: left;\">Actie<\/th>\n<\/tr>\n<tr>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">27 april<\/td>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Koningsdag<\/td>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Lancering campagne met oranje visuals en lokale influencers<\/td>\n<\/tr>\n<tr>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">December<\/td>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Sinterklaas<\/td>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Themakalenders en speciale aanbiedingen integreren<\/td>\n<\/tr>\n<\/table>\n<h2 id=\"contentcreatie-optimalisatie\" style=\"font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; color: #34495e;\">Contentcreatie en optimalisatie specifiek voor Nederland<\/h2>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Het aanpassen van je taalgebruik en tone of voice is essentieel voor de Nederlandse markt. Gebruik informele, directe taal die aansluit bij de Nederlandse cultuur, zoals het gebruik van &#8216;jij&#8217; en &#8216;wij&#8217;. Daarnaast versterken lokale nuances je contentstrategie. Een voorbeeld is het integreren van typisch Nederlandse uitdrukkingen zoals &#8216;De kat uit de boom kijken&#8217; of &#8216;Met de deur in huis vallen&#8217;.<\/p>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Bij het ontwikkelen van contenttemplates moet je rekening houden met visuele elementen die Nederland uitstralen. Denk aan typische landschappen, iconische symbolen zoals klompen of molens, en kleuren die de Nederlandse identiteit versterken, zoals oranje, rood, en blauw.<\/p>\n<h3 style=\"font-size: 1.3em; margin-top: 25px; margin-bottom: 10px; color: #2c3e50;\">Stap-voor-stap: ontwikkel een Nederlands contenttemplate<\/h3>\n<ul style=\"list-style-type: disc; padding-left: 40px; font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6;\">\n<li><strong>Stap 1:<\/strong> Bepaal de tone of voice; kies voor informeel en direct, passend bij de Nederlandse cultuur.<\/li>\n<li><strong>Stap 2:<\/strong> Gebruik visuele elementen die Nederlandse herkenning oproepen, zoals typisch landschap of iconografie.<\/li>\n<li><strong>Stap 3:<\/strong> Integreer culturele referenties en idiomen voor meer authenticiteit.<\/li>\n<li><strong>Stap 4:<\/strong> Test en optimaliseer je templates door feedback van Nederlandse gebruikers te verzamelen en iteratief aan te passen.<\/li>\n<\/ul>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6;\">Door deze aanpak wordt je content niet alleen relevanter, maar ook aantrekkelijker voor de Nederlandse consument, wat leidt tot hogere engagement en merkloyaliteit.<\/p>\n<h2 id=\"technische-implementatie\" style=\"font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; color: #34495e;\">Technische implementatie: van planning tot publicatie<\/h2>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Het opzetten van een effici\u00ebnte workflow begint met het kiezen van de juiste Nederlandse content management systemen (CMS). <strong>Contentful<\/strong>, <strong>Coosto<\/strong> en <strong>WordPress<\/strong> bieden uitgebreide integratiemogelijkheden voor Nederlandse markten.<\/p>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Automatisering kan je realiseren via API-koppelingen en planningstools. Bijvoorbeeld, door Contentful te integreren met je social media platformen, plan je content automatisch in en monitor je prestaties in \u00e9\u00e9n overzicht.<\/p>\n<h3 style=\"font-size: 1.3em; margin-top: 25px; margin-bottom: 10px; color: #2c3e50;\">Voorbeeld van integratie<\/h3>\n<table style=\"width: 100%; border-collapse: collapse; margin-bottom: 20px; font-family: Arial, sans-serif;\">\n<tr style=\"background-color: #ecf0f1;\">\n<th style=\"border: 1px solid #bdc3c7; padding: 8px; text-align: left;\">Tools<\/th>\n<th style=\"border: 1px solid #bdc3c7; padding: 8px; text-align: left;\">Functionaliteit<\/th>\n<th style=\"border: 1px solid #bdc3c7; padding: 8px; text-align: left;\">Voordelen<\/th>\n<\/tr>\n<tr>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Contentful<\/td>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Headless CMS voor gestructureerde contentpublicatie<\/td>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Flexibel, schaalbaar, eenvoudig te koppelen aan Nederlandse platforms<\/td>\n<\/tr>\n<tr>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Coosto<\/td>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Social media management en planning<\/td>\n<td style=\"border: 1px solid #bdc3c7; padding: 8px;\">Automatische planning, monitoring en rapportage specifiek voor Nederland<\/td>\n<\/tr>\n<\/table>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6;\">Door deze systemen te combineren, cre\u00eber je een gestroomlijnde workflow die je contentproces effici\u00ebnter maakt en je realtime inzichten geeft voor optimalisatie.<\/p>\n<h2 id=\"veelgemaakte-fouten\" style=\"font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; color: #34495e;\">Veelgemaakte fouten en hoe deze te voorkomen<\/h2>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Een veelvoorkomende valkuil is het gebruik van niet-relevante Nederlandse zoekwoorden. Dit gebeurt vaak door onvoldoende marktonderzoek of verouderde zoekwoordenlijsten. <strong>Oplossing<\/strong>: voer periodiek keyword-analyses uit met tools zoals <strong>SEMrush<\/strong> of <strong>Ubersuggest<\/strong> gericht op de Nederlandse markt, en pas je keywords aan op actuele zoekopdrachten.<\/p>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Daarnaast wordt planning rond Nederlandse feestdagen en evenementen soms verkeerd ingeschat. Bijvoorbeeld, het niet anticiperen op de voorbereidingstijd voor Sinterklaas-campagnes kan de effectiviteit verminderen. <strong>Tip<\/strong>: maak een jaarlijkse contentplanning die minstens 3 maanden vooruit plant, inclusief bufferperiodes voor onverwachte wijzigingen.<\/p>\n<h3 style=\"font-size: 1.3em; margin-top: 25px; margin-bottom: 10px; color: #2c3e50;\">Case study: fouten en oplossingen<\/h3>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6;\">Een Nederlandse retailer lanceerde een campagne rond Koningsdag zonder rekening te houden met de lokale tradities en timing. Het resultaat was lage betrokkenheid en beperkte omzet. Door feedback te verzamelen, ontdekte het team dat het belangrijk was om de campagne te richten op de specifieke feestdagen en het gebruik van lokale influencers te versterken. Na aanpassingen in de planning en inhoud, steeg de betrokkenheid met 35% in de volgende editie.<\/p>\n<h2 id=\"monitoring-bijsturen\" style=\"font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; color: #34495e;\">Monitoring en bijsturen van je Nederlandse contentstrategie<\/h2>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Het uitvoeren van regelmatige evaluaties vereist dat je je data en feedback uit de Nederlandse markt systematisch verzamelt. Maak gebruik van dashboards in Google Analytics en social media monitoring tools zoals <strong>Brandwatch<\/strong> om inzicht te krijgen in betrokkenheid en conversies. Bijvoorbeeld, na een campagne rond Sinterklaas analyseer je welke content het meeste engagement opleverde en waarom.<\/p>\n<p style=\"font-family: Arial, sans-serif; font-size: 1em; line-height: 1.6; margin-bottom: 20px;\">Op basis van deze data pas je je content aan. Als blijkt dat humor en lokale referenties beter werken dan formele communicatie, verhoog dan de focus op deze elementen. Door deze iteratieve aanpak houd je je strategie relevant en effectief.<\/p>\n<h3 style=\"font-size: 1.3em; margin-top: 25px; margin-bottom: 10px; color: #2c3e50;\">Praktisch voorbeeld: content verbeteren op basis van feedback<\/h3>\n<blockquote style=\"border-left: 4px solid #bdc3c7; padding-left: 15px; margin: 20px 0; font-family: Arial, sans-serif; font-size: 1em; color: #7f8c8d;\"><p>\n<em>Door te luisteren naar Nederlandse gebruikersreacties en deze te analyseren, ontdekte een webshop dat hun productbeschrijvingen te formeel waren. Door ze te herschrijven in een meer toegankelijke, lokale stijl, steeg de conversie met 20% binnen 2 maanden.<\/em>\n<\/p><\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>Inhoudsopgave Praktische toepassing van de contentstrategie voor de Nederlandse markt Data-gedreven contentplanning: specifiek inzetten op Nederlandse doelgroep Contentcreatie en optimalisatie specifiek voor Nederland Technische implementatie: van planning tot publicatie Veelgemaakte fouten en hoe deze te voorkomen Monitoring en bijsturen van je Nederlandse contentstrategie Versterken van je positie en merkautoriteit in Nederland Conclusie: van planning naar [&hellip;]<\/p>\n","protected":false},"author":36,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-21788","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/posts\/21788","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/users\/36"}],"replies":[{"embeddable":true,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=21788"}],"version-history":[{"count":1,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/posts\/21788\/revisions"}],"predecessor-version":[{"id":21790,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/posts\/21788\/revisions\/21790"}],"wp:attachment":[{"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=21788"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=21788"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=21788"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}