{"id":1042,"date":"2020-07-22T13:33:14","date_gmt":"2020-07-22T04:33:14","guid":{"rendered":"http:\/\/meeny.com\/?p=1042"},"modified":"2020-07-22T13:33:23","modified_gmt":"2020-07-22T04:33:23","slug":"shuffle-carousel-slides","status":"publish","type":"post","link":"https:\/\/meeny.com\/?p=1042","title":{"rendered":"Shuffle carousel slides"},"content":{"rendered":"\n<p>Bootstrap4 &#8211; Shuffle carousel slides<\/p>\n\n\n\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"Shuffle carousel slides\" width=\"800\" height=\"450\" src=\"https:\/\/www.youtube.com\/embed\/CoZigHklU3U?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<p>index.html<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\n&lt;html lang=\"en\">\n&lt;head>\n    &lt;meta charset=\"UTF-8\">\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    &lt;title>Carousel Slide Shuffle&lt;\/title>\n    &lt;link rel=\"stylesheet\" href=\"https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.5.0\/css\/bootstrap.min.css\" integrity=\"sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk\" crossorigin=\"anonymous\">\n    &lt;script src=\"https:\/\/code.jquery.com\/jquery-3.5.1.slim.min.js\" integrity=\"sha384-DfXdz2htPH0lsSSs5nCTpuj\/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj\" crossorigin=\"anonymous\">&lt;\/script>\n    &lt;script src=\"https:\/\/cdn.jsdelivr.net\/npm\/popper.js@1.16.0\/dist\/umd\/popper.min.js\" integrity=\"sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo\" crossorigin=\"anonymous\">&lt;\/script>\n    &lt;script src=\"https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.5.0\/js\/bootstrap.min.js\" integrity=\"sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh\/kR0JKI\" crossorigin=\"anonymous\">&lt;\/script>\n&lt;\/head>\n&lt;body>\n\n\n    &lt;div id=\"carouselExampleIndicators\" class=\"carousel slide\" data-ride=\"carousel\">\n        &lt;ol class=\"carousel-indicators\">\n          &lt;li data-target=\"#carouselExampleIndicators\" data-slide-to=\"0\" class=\"active\">&lt;\/li>\n          &lt;li data-target=\"#carouselExampleIndicators\" data-slide-to=\"1\">&lt;\/li>\n          &lt;li data-target=\"#carouselExampleIndicators\" data-slide-to=\"2\">&lt;\/li>\n        &lt;\/ol>\n        &lt;div class=\"carousel-inner\">\n          &lt;div class=\"carousel-item active\">\n            &lt;img id=\"caImg0\" src=\"images\/num1.png\" class=\"d-block w-100\" alt=\"...\">\n          &lt;\/div>\n          &lt;div class=\"carousel-item\">\n            &lt;img id=\"caImg1\" src=\"images\/num2.png\" class=\"d-block w-100\" alt=\"...\">\n          &lt;\/div>\n          &lt;div class=\"carousel-item\">\n            &lt;img id=\"caImg2\" src=\"images\/num3.png\" class=\"d-block w-100\" alt=\"...\">\n          &lt;\/div>\n        &lt;\/div>\n        &lt;a class=\"carousel-control-prev\" href=\"#carouselExampleIndicators\" role=\"button\" data-slide=\"prev\">\n          &lt;span class=\"carousel-control-prev-icon\" aria-hidden=\"true\">&lt;\/span>\n          &lt;span class=\"sr-only\">Previous&lt;\/span>\n        &lt;\/a>\n        &lt;a class=\"carousel-control-next\" href=\"#carouselExampleIndicators\" role=\"button\" data-slide=\"next\">\n          &lt;span class=\"carousel-control-next-icon\" aria-hidden=\"true\">&lt;\/span>\n          &lt;span class=\"sr-only\">Next&lt;\/span>\n        &lt;\/a>\n      &lt;\/div>    \n    \n&lt;script>\n    function shuffle(array) {\n        for (let i = array.length - 1; i > 0; i--) {\n            let j = Math.floor(Math.random() * (i + 1));\n            &#91;array&#91;i], array&#91;j]] = &#91;array&#91;j], array&#91;i]];\n        }\n    }\n    let array = &#91;\n        \"num1.png\",\n        \"num2.png\",\n        \"num3.png\",\n        \"num4.png\",\n        \"num5.png\"\n\n    ];\n    shuffle(array);\n\n    let k = 3;\n    for(let i = 0; i &lt; k; ++i ){\n        document.getElementById(\"caImg\" + i).src = \"images\/\" + array&#91;i];\n    }\n\n&lt;\/script>\n\n&lt;\/body>\n&lt;\/html><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-meeny\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"23s9EIbtf3\"><a href=\"https:\/\/meeny.com\/2020\/06\/20\/bootstrap4-theming-ep01\/\">Bootstrap4 theming ep01<\/a><\/blockquote><iframe title=\"&#8220;Bootstrap4 theming ep01&#8221; &#8212; Meeny\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https:\/\/meeny.com\/2020\/06\/20\/bootstrap4-theming-ep01\/embed\/#?secret=23s9EIbtf3\" data-secret=\"23s9EIbtf3\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-meeny\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"S3V7hZXdYs\"><a href=\"https:\/\/meeny.com\/2020\/06\/22\/bootstrap4-theming-ep02\/\">Bootstrap4 theming ep02<\/a><\/blockquote><iframe title=\"&#8220;Bootstrap4 theming ep02&#8221; &#8212; Meeny\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https:\/\/meeny.com\/2020\/06\/22\/bootstrap4-theming-ep02\/embed\/#?secret=S3V7hZXdYs\" data-secret=\"S3V7hZXdYs\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Bootstrap4 &#8211; Shuffle carousel slides index.html<\/p>\n","protected":false},"author":1,"featured_media":1044,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"colormag_page_container_layout":"default_layout","colormag_page_sidebar_layout":"default_layout","footnotes":""},"categories":[62],"tags":[415,410,411,538,396,397,395,394,398,422,537,439,329],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Shuffle carousel slides - Meeny<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/meeny.com\/?p=1042\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Shuffle carousel slides - Meeny\" \/>\n<meta property=\"og:description\" content=\"Bootstrap4 &#8211; Shuffle carousel slides index.html\" \/>\n<meta property=\"og:url\" content=\"https:\/\/meeny.com\/?p=1042\" \/>\n<meta property=\"og:site_name\" content=\"Meeny\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-22T04:33:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-22T04:33:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Meeny\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Meeny\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/meeny.com\/?p=1042#article\",\"isPartOf\":{\"@id\":\"https:\/\/meeny.com\/?p=1042\"},\"author\":{\"name\":\"Meeny\",\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/person\/4b6b745d39f90b39161c79fe08a6feb9\"},\"headline\":\"Shuffle carousel slides\",\"datePublished\":\"2020-07-22T04:33:14+00:00\",\"dateModified\":\"2020-07-22T04:33:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/meeny.com\/?p=1042\"},\"wordCount\":25,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#organization\"},\"image\":{\"@id\":\"https:\/\/meeny.com\/?p=1042#primaryimage\"},\"thumbnailUrl\":\"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png\",\"keywords\":[\"bootstrap\",\"bootstrap css\",\"bootstrap html\",\"carousel shuffle\",\"css\",\"html\",\"html code\",\"html css\",\"javascript\",\"responsive design\",\"shffle slide\",\"template\",\"VSCode\"],\"articleSection\":[\"HTML &amp; CSS\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/meeny.com\/?p=1042#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/meeny.com\/?p=1042\",\"url\":\"https:\/\/meeny.com\/?p=1042\",\"name\":\"Shuffle carousel slides - Meeny\",\"isPartOf\":{\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/meeny.com\/?p=1042#primaryimage\"},\"image\":{\"@id\":\"https:\/\/meeny.com\/?p=1042#primaryimage\"},\"thumbnailUrl\":\"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png\",\"datePublished\":\"2020-07-22T04:33:14+00:00\",\"dateModified\":\"2020-07-22T04:33:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/meeny.com\/?p=1042#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/meeny.com\/?p=1042\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/meeny.com\/?p=1042#primaryimage\",\"url\":\"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png\",\"contentUrl\":\"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/meeny.com\/?p=1042#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/meeny.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Shuffle carousel slides\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#website\",\"url\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/\",\"name\":\"Meeny\",\"description\":\"Issues &amp; News\",\"publisher\":{\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#organization\",\"name\":\"Meeny\",\"url\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/meeny.com\/wp-content\/uploads\/2020\/05\/LOGO_meeny_180.png\",\"contentUrl\":\"https:\/\/meeny.com\/wp-content\/uploads\/2020\/05\/LOGO_meeny_180.png\",\"width\":180,\"height\":41,\"caption\":\"Meeny\"},\"image\":{\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/person\/4b6b745d39f90b39161c79fe08a6feb9\",\"name\":\"Meeny\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c64cfa5c72bf22b037e8dce05c95e373?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c64cfa5c72bf22b037e8dce05c95e373?s=96&d=mm&r=g\",\"caption\":\"Meeny\"},\"sameAs\":[\"http:\/\/blog.epart.kr\"],\"url\":\"https:\/\/meeny.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Shuffle carousel slides - Meeny","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/meeny.com\/?p=1042","og_locale":"ko_KR","og_type":"article","og_title":"Shuffle carousel slides - Meeny","og_description":"Bootstrap4 &#8211; Shuffle carousel slides index.html","og_url":"https:\/\/meeny.com\/?p=1042","og_site_name":"Meeny","article_published_time":"2020-07-22T04:33:14+00:00","article_modified_time":"2020-07-22T04:33:23+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png","type":"image\/png"}],"author":"Meeny","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Meeny","Est. reading time":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/meeny.com\/?p=1042#article","isPartOf":{"@id":"https:\/\/meeny.com\/?p=1042"},"author":{"name":"Meeny","@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/person\/4b6b745d39f90b39161c79fe08a6feb9"},"headline":"Shuffle carousel slides","datePublished":"2020-07-22T04:33:14+00:00","dateModified":"2020-07-22T04:33:23+00:00","mainEntityOfPage":{"@id":"https:\/\/meeny.com\/?p=1042"},"wordCount":25,"commentCount":0,"publisher":{"@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#organization"},"image":{"@id":"https:\/\/meeny.com\/?p=1042#primaryimage"},"thumbnailUrl":"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png","keywords":["bootstrap","bootstrap css","bootstrap html","carousel shuffle","css","html","html code","html css","javascript","responsive design","shffle slide","template","VSCode"],"articleSection":["HTML &amp; CSS"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/meeny.com\/?p=1042#respond"]}]},{"@type":"WebPage","@id":"https:\/\/meeny.com\/?p=1042","url":"https:\/\/meeny.com\/?p=1042","name":"Shuffle carousel slides - Meeny","isPartOf":{"@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#website"},"primaryImageOfPage":{"@id":"https:\/\/meeny.com\/?p=1042#primaryimage"},"image":{"@id":"https:\/\/meeny.com\/?p=1042#primaryimage"},"thumbnailUrl":"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png","datePublished":"2020-07-22T04:33:14+00:00","dateModified":"2020-07-22T04:33:23+00:00","breadcrumb":{"@id":"https:\/\/meeny.com\/?p=1042#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/meeny.com\/?p=1042"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/meeny.com\/?p=1042#primaryimage","url":"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png","contentUrl":"https:\/\/meeny.com\/wp-content\/uploads\/2020\/07\/shuffle.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/meeny.com\/?p=1042#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/meeny.com\/"},{"@type":"ListItem","position":2,"name":"Shuffle carousel slides"}]},{"@type":"WebSite","@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#website","url":"https:\/\/meeny.com\/?tag=ios-13-4-5\/","name":"Meeny","description":"Issues &amp; News","publisher":{"@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/meeny.com\/?tag=ios-13-4-5\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#organization","name":"Meeny","url":"https:\/\/meeny.com\/?tag=ios-13-4-5\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/logo\/image\/","url":"https:\/\/meeny.com\/wp-content\/uploads\/2020\/05\/LOGO_meeny_180.png","contentUrl":"https:\/\/meeny.com\/wp-content\/uploads\/2020\/05\/LOGO_meeny_180.png","width":180,"height":41,"caption":"Meeny"},"image":{"@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/person\/4b6b745d39f90b39161c79fe08a6feb9","name":"Meeny","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/meeny.com\/?tag=ios-13-4-5\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c64cfa5c72bf22b037e8dce05c95e373?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c64cfa5c72bf22b037e8dce05c95e373?s=96&d=mm&r=g","caption":"Meeny"},"sameAs":["http:\/\/blog.epart.kr"],"url":"https:\/\/meeny.com\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/meeny.com\/index.php?rest_route=\/wp\/v2\/posts\/1042"}],"collection":[{"href":"https:\/\/meeny.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/meeny.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/meeny.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/meeny.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1042"}],"version-history":[{"count":1,"href":"https:\/\/meeny.com\/index.php?rest_route=\/wp\/v2\/posts\/1042\/revisions"}],"predecessor-version":[{"id":1045,"href":"https:\/\/meeny.com\/index.php?rest_route=\/wp\/v2\/posts\/1042\/revisions\/1045"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/meeny.com\/index.php?rest_route=\/wp\/v2\/media\/1044"}],"wp:attachment":[{"href":"https:\/\/meeny.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1042"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/meeny.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1042"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/meeny.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1042"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}