{"id":14659,"date":"2025-04-08T18:58:28","date_gmt":"2025-04-08T13:28:28","guid":{"rendered":"https:\/\/www.skynats.com\/?p=14659"},"modified":"2025-04-08T18:58:30","modified_gmt":"2025-04-08T13:28:30","slug":"how-to-enable-redis-cache-in-wordpress","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/","title":{"rendered":"How to Enable Redis Cache in WordPress"},"content":{"rendered":"\n<p>If your WordPress website is running slow, learning how to enable Redis cache in WordPress can significantly boost its performance. Redis works by storing frequently accessed data in memory, reducing the need to repeatedly load information from the database every time someone visits a page. By enabling Redis caching, you can make your site load much faster and provide a smoother experience for your visitors.<\/p>\n\n\n\n<p>In this blog, we\u2019ll show you how to easily set up Redis cache for your <a href=\"https:\/\/wordpress.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">WordPress<\/mark><\/a> site on different Linux servers. Even if you\u2019re not a tech expert, just follow the steps and your site will be faster in no time!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-prerequisites\" style=\"font-size:18px\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A working WordPress site<\/li>\n\n\n\n<li>Access to your server (SSH\/root or sudo user)<\/li>\n\n\n\n<li>Redis server installed<\/li>\n\n\n\n<li>PHP Redis extension installed<\/li>\n\n\n\n<li>WordPress Redis plugin (like Redis Object Cache)<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-1-install-redis-server\" style=\"font-size:18px\">Step 1: Install Redis Server<\/h2>\n\n\n\n<p>On Ubuntu\/Debian<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#apt update\n#apt install redis-server <\/code><\/pre>\n\n\n\n<p>On CentOS 7\/8<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#yum install epel-release\n#yum install redis<\/code><\/pre>\n\n\n\n<p>On AlmaLinux 8\/9<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#dnf install redis<\/code><\/pre>\n\n\n\n<p>Enable and start Redis:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#systemctl enable redis\n#systemctl start redis\n<\/code><\/pre>\n\n\n\n<p>Test Redis:<\/p>\n\n\n\n<p>Test redis using the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#redis-cli ping<\/code><\/pre>\n\n\n\n<p>Output: PONG<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-2-install-php-redis-extension\" style=\"font-size:18px\">Step 2: Install PHP Redis Extension<\/h3>\n\n\n\n<p>For PHP 8.x (All OS)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#apt install php-redis  # Ubuntu\/Debian\n#yum install php-pecl-redis -y  # CentOS\n#dnf install php-pecl-redis -y  # AlmaLinux<\/code><\/pre>\n\n\n\n<p>Restart your web server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#systemctl restart apache2   # for Apache\n#systemctl restart nginx     # for Nginx<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:18px\">Step 3: Install &amp; Enable Redis Plugin in WordPress<\/h3>\n\n\n\n<p>Log in to your WordPress Dashboard<\/p>\n\n\n\n<p>Go to Plugins \u2192 Add New<\/p>\n\n\n\n<p>Search for Redis Object Cache<\/p>\n\n\n\n<p>Click Install, then Activate<\/p>\n\n\n\n<p>Then go to:<\/p>\n\n\n\n<p>Settings \u2192 Redis<\/p>\n\n\n\n<p>Click Enable Object Cache<\/p>\n\n\n\n<p>If Redis is working, you\u2019ll see a Connected message.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" style=\"font-size:18px\">Step 4: Configure wp-config.php with Redis Constants<\/h4>\n\n\n\n<p>To fine-tune Redis behavior or work with custom setups, add the following constants before the line that says \/* That&#8217;s all. *\/ in your wp-config.php file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ Redis Configuration\ndefine( 'WP_REDIS_HOST', '127.0.0.1' ); \/\/ Redis server address\ndefine( 'WP_REDIS_PORT', 6379 );        \/\/ Redis default port\ndefine( 'WP_REDIS_PASSWORD', '' );      \/\/ Redis password if set (optional)<\/code><\/pre>\n\n\n\n<p>When should you edit these?<\/p>\n\n\n\n<p>If Redis is hosted on another server (change WP_REDIS_HOST)<\/p>\n\n\n\n<p>If you\u2019re using Redis authentication (set WP_REDIS_PASSWORD)<\/p>\n\n\n\n<p>If you&#8217;re using a different Redis database index (e.g., to isolate cache per site)<\/p>\n\n\n\n<p>After making these changes, go back to the Redis plugin settings and flush the cache to apply.<\/p>\n\n\n\n<p><strong>Final Tips<\/strong><\/p>\n\n\n\n<p>Redis works best when combined with page caching plugins like LiteSpeed Cache or WP Rocket.<\/p>\n\n\n\n<p>Monitor Redis memory usage using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#redis-cli info memory<\/code><\/pre>\n\n\n\n<p>To flush Redis cache manually:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#redis-cli flushall<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" style=\"font-size:18px\">Conclusion<\/h4>\n\n\n\n<p>Setting up Redis cache for your WordPress site is a smart move to enhance speed, scalability, and overall performance. Whether you&#8217;re running on Ubuntu, CentOS, or AlmaLinux, the process is straightforward \u2014 install Redis, connect it with WordPress using a plugin, and fine-tune it through your wp-config.php file for better control.<\/p>\n\n\n\n<p>By offloading repeated database queries to Redis, your site can handle more traffic with fewer resources, delivering a faster and smoother experience to your visitors.<\/p>\n\n\n\n<p>If you&#8217;re unsure how to enable Redis cache in WordPress, it&#8217;s always a good idea to seek expert assistance to ensure it&#8217;s set up correctly and securely. A professional team offering reliable <a href=\"https:\/\/www.skynats.com\/server-management\/\">server management services<\/a> can help you configure Redis caching, optimise your website\u2019s performance, and handle any server-level adjustments.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>If your WordPress website is running slow, learning how to enable Redis cache in WordPress can significantly boost its performance. Redis works by storing frequently accessed data in memory, reducing the need to repeatedly load information from the database every time someone visits a page. By enabling Redis caching, you can make your site load [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[999,302,284],"class_list":["post-14659","post","type-post","status-publish","format-standard","hentry","category-blog","tag-redis-cache-in-wordpress","tag-server-management-services","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Enable Redis Cache in WordPress | Skynats<\/title>\n<meta name=\"description\" content=\"Learn how to enable Redis cache in WordPress to improve website speed and performance. Follow our easy step-by-step guide today!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable Redis Cache in WordPress\" \/>\n<meta property=\"og:description\" content=\"Learn how to enable Redis cache in WordPress to improve website speed and performance. Follow our easy step-by-step guide today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-08T13:28:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-08T13:28:30+00:00\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sourav AJ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-redis-cache-in-wordpress\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-redis-cache-in-wordpress\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to Enable Redis Cache in WordPress\",\"datePublished\":\"2025-04-08T13:28:28+00:00\",\"dateModified\":\"2025-04-08T13:28:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-redis-cache-in-wordpress\\\/\"},\"wordCount\":479,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Redis Cache in WordPress\",\"server management services\",\"wordpress\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-redis-cache-in-wordpress\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-redis-cache-in-wordpress\\\/\",\"name\":\"How to Enable Redis Cache in WordPress | Skynats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-04-08T13:28:28+00:00\",\"dateModified\":\"2025-04-08T13:28:30+00:00\",\"description\":\"Learn how to enable Redis cache in WordPress to improve website speed and performance. Follow our easy step-by-step guide today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-redis-cache-in-wordpress\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-redis-cache-in-wordpress\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-redis-cache-in-wordpress\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable Redis Cache in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Enable Redis Cache in WordPress | Skynats","description":"Learn how to enable Redis cache in WordPress to improve website speed and performance. Follow our easy step-by-step guide today!","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:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable Redis Cache in WordPress","og_description":"Learn how to enable Redis cache in WordPress to improve website speed and performance. Follow our easy step-by-step guide today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-04-08T13:28:28+00:00","article_modified_time":"2025-04-08T13:28:30+00:00","author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to Enable Redis Cache in WordPress","datePublished":"2025-04-08T13:28:28+00:00","dateModified":"2025-04-08T13:28:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/"},"wordCount":479,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Redis Cache in WordPress","server management services","wordpress"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/","url":"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/","name":"How to Enable Redis Cache in WordPress | Skynats","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-04-08T13:28:28+00:00","dateModified":"2025-04-08T13:28:30+00:00","description":"Learn how to enable Redis cache in WordPress to improve website speed and performance. Follow our easy step-by-step guide today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-redis-cache-in-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable Redis Cache in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14659","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=14659"}],"version-history":[{"count":4,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14659\/revisions"}],"predecessor-version":[{"id":14665,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14659\/revisions\/14665"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=14659"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=14659"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=14659"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}