{"id":13183205,"date":"2026-03-04T12:19:14","date_gmt":"2026-03-04T12:19:14","guid":{"rendered":"https:\/\/www.wpallimport.com\/?p=13183205"},"modified":"2026-03-27T12:12:14","modified_gmt":"2026-03-27T12:12:14","slug":"what-does-wp_debug-do","status":"publish","type":"post","link":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/","title":{"rendered":"What Does WP_DEBUG Do?"},"content":{"rendered":"\n<p><code>WP_DEBUG<\/code> is a WordPress constant that changes how WordPress handles PHP errors. By default, WordPress suppresses many errors, warnings, and notices so visitors don\u2019t see technical output. When you enable <code>WP_DEBUG<\/code>, WordPress makes it possible to identify which plugin, theme, or custom code is causing the problem.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Enable WP_DEBUG<\/h2>\n\n\n\n<p><code>WP_DEBUG<\/code> is typically enabled in <code>wp-config.php<\/code> by setting <code>WP_DEBUG<\/code> to <code>true<\/code>.<\/p>\n\n\n\n<p>Once enabled, WordPress begins reporting PHP issues during page loads and admin actions, meaning you can reproduce the problem and often see what failed.<\/p>\n\n\n\n<p><code>WP_DEBUG<\/code> is usually paired with two other constants: <code>WP_DEBUG_DISPLAY<\/code> and <code>WP_DEBUG_LOG<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">WP_DEBUG_DISPLAY<\/h3>\n\n\n\n<p>This constant controls whether errors are shown directly on the page, provided <code>WP_DEBUG<\/code> is also enabled. On a production site, displaying errors publicly can expose:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>server paths<\/li>\n\n\n\n<li>plugin\/theme structure<\/li>\n\n\n\n<li>other technical details you don\u2019t want visitors to see<\/li>\n<\/ul>\n\n\n\n<p>For this reason, it is best to disable <code>WP_DEBUG_DISPLAY<\/code> unless working in a test or staging environment.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">WP_DEBUG_LOG<\/h3>\n\n\n\n<p>When enabled, WordPress writes errors to a log file (commonly <code>wp-content\/debug.log<\/code>). This is helpful when:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>you don\u2019t want errors displayed on-screen<\/li>\n\n\n\n<li>you need a history of what occurred during troubleshooting<\/li>\n\n\n\n<li>errors happen during background processes (cron jobs, AJAX, REST requests)<\/li>\n<\/ul>\n\n\n\n<p>Most developers enable logging when troubleshooting.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Dangers of Directly Modifying Debugging Constants<\/h2>\n\n\n\n<p>Editing debugging constants directly in <code>wp-config.php<\/code> works, but it comes with a few risks\u2014especially if you\u2019re troubleshooting quickly under pressure.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Typos can take your site down.<\/strong> A missing quote, comma, or parenthesis in <code>wp-config.php<\/code> can trigger a fatal error and lock you out.<\/li>\n\n\n\n<li><strong>It\u2019s easy to leave debugging enabled.<\/strong> Forgetting to disable the debugging constants when you're finished debugging can expose critical information and\/or slow your site's performance.<\/li>\n\n\n\n<li><strong>Settings can conflict or behave unexpectedly.<\/strong> Mixing <code>WP_DEBUG<\/code>, <code>WP_DEBUG_LOG<\/code>, and <code>WP_DEBUG_DISPLAY<\/code> without a clear plan can lead to errors being shown publicly, not logged, or both.<\/li>\n\n\n\n<li><strong>It encourages \u201cquick fixes\u201d on production.<\/strong> Manual edits make it more likely someone will debug directly on a live site, increasing security, privacy, and stability risks.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">A Safer Option: Manage WP_DEBUG With WP Debug Toolkit<\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5.png\" data-rel=\"lightbox-image-0\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img decoding=\"async\" width=\"1024\" height=\"541\" src=\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5-1024x541.png\" alt=\"WP Debug Toolkit\" class=\"wp-image-13183264\" srcset=\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5-1024x541.png 1024w, https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5-300x159.png 300w, https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5-768x406.png 768w, https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5-1536x812.png 1536w, https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5.png 1801w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p>If you want a faster and safer way to control debugging, use <a href=\"https:\/\/wpdebugtoolkit.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Debug Toolkit<\/a>. It lets you enable WordPress debugging through the WordPress admin instead of editing files manually, and it provides a central place to review issues as they happen. This means you can:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Toggle debug mode on and off without touching <code>wp-config.php<\/code><\/li>\n\n\n\n<li>Reproduce a problem and immediately see the resulting errors<\/li>\n\n\n\n<li>Stay organized while debugging without bouncing between FTP, hosting panels, and log files<\/li>\n<\/ul>\n\n\n\n<p>Additionally, WP Debug Toolkit:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Provides deep insight into your database performance with low database impact using its database monitor and Query Viewer features<\/li>\n\n\n\n<li>Helps you identify slow plugins and queries<\/li>\n\n\n\n<li>Lets you automatically monitor your site and send email alerts when needed<\/li>\n\n\n\n<li>Has a crash recovery system that lets you identify and disable the offending component so that you can log back into WordPress Admin to provide a permanent fix <\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Final Thoughts<\/h2>\n\n\n\n<p><code>WP_DEBUG<\/code> is one of the most important tools for diagnosing WordPress problems. It doesn\u2019t \u201cfix\u201d anything on its own\u2014it simply makes WordPress tell you what\u2019s wrong.<\/p>\n\n\n\n<p>If you\u2019re troubleshooting errors, enable <code>WP_DEBUG<\/code>, reproduce the issue, and follow the message to the source. If you want to do this more conveniently, with less risk, and a more powerful debugging toolset, WP Debug Toolkit can make the entire debugging workflow much easier to manage.<\/p>\n\n\n\n<p>For a complete list of debugging plugins, see the&nbsp;<a href=\"https:\/\/www.wpallimport.com\/wordpress-debug-plugins\/\" target=\"_blank\" rel=\"noreferrer noopener\">7 Best WordPress Debug Plugins<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WP_DEBUG is a WordPress constant that changes how WordPress handles PHP errors. By default, WordPress suppresses many errors, warnings, and notices so visitors don\u2019t see technical output. When you enable WP_DEBUG, WordPress makes it possible to identify which plugin, theme, or custom code is causing the problem. How to Enable WP_DEBUG WP_DEBUG is typically enabled [&hellip;]<\/p>\n","protected":false},"author":82597,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_stopmodifiedupdate":false,"_modified_date":"","inline_featured_image":false,"ep_exclude_from_search":false,"footnotes":""},"categories":[1],"tags":[],"content_author":[213],"cta":[222],"class_list":["post-13183205","post","type-post","status-publish","format-standard","hentry","category-uncategorized","content_author-editorial-staff","cta-wp-debug-toolkit"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What Does WP_DEBUG Do? - WP All Import<\/title>\n<meta name=\"description\" content=\"Learn what WP_DEBUG does and how to use it to enable debugging in WordPress, either on its own or with WP Debug Toolkit.\" \/>\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.wpallimport.com\/what-does-wp_debug-do\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Does WP_DEBUG Do? - WP All Import\" \/>\n<meta property=\"og:description\" content=\"Learn what WP_DEBUG does and how to use it to enable debugging in WordPress, either on its own or with WP Debug Toolkit.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/\" \/>\n<meta property=\"og:site_name\" content=\"WP All Import\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/groups\/wpallimport\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-04T12:19:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-27T12:12:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1801\" \/>\n\t<meta property=\"og:image:height\" content=\"952\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Editorial Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editorial Staff\" \/>\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.wpallimport.com\/what-does-wp_debug-do\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/\"},\"author\":{\"name\":\"Editorial Staff\",\"@id\":\"https:\/\/www.wpallimport.com\/#\/schema\/person\/213\",\"url\":\"https:\/\/www.wpallimport.com\/author\/editorial-staff\/\"},\"headline\":\"What Does WP_DEBUG Do?\",\"datePublished\":\"2026-03-04T12:19:14+00:00\",\"dateModified\":\"2026-03-27T12:12:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/\"},\"wordCount\":576,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.wpallimport.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5-1024x541.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/\",\"url\":\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/\",\"name\":\"What Does WP_DEBUG Do? - WP All Import\",\"isPartOf\":{\"@id\":\"https:\/\/www.wpallimport.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5-1024x541.png\",\"datePublished\":\"2026-03-04T12:19:14+00:00\",\"dateModified\":\"2026-03-27T12:12:14+00:00\",\"description\":\"Learn what WP_DEBUG does and how to use it to enable debugging in WordPress, either on its own or with WP Debug Toolkit.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#primaryimage\",\"url\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5.png\",\"contentUrl\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5.png\",\"width\":1801,\"height\":952},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.wpallimport.com\/#website\",\"url\":\"https:\/\/www.wpallimport.com\/\",\"name\":\"WP All Import\",\"description\":\"Import XML &amp; CSV to WordPress\",\"publisher\":{\"@id\":\"https:\/\/www.wpallimport.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.wpallimport.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.wpallimport.com\/#organization\",\"name\":\"WP All Import\",\"url\":\"https:\/\/www.wpallimport.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.wpallimport.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2020\/02\/logo-v5-no-text.svg\",\"contentUrl\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2020\/02\/logo-v5-no-text.svg\",\"width\":199,\"height\":37,\"caption\":\"WP All Import\"},\"image\":{\"@id\":\"https:\/\/www.wpallimport.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.wpallimport.com\/#\/schema\/person\/213\",\"name\":\"Editorial Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.wpallimport.com\/#\/schema\/person\/image\/213\",\"url\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/WP-All-Import-Logo-Big.jpg\",\"contentUrl\":\"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/WP-All-Import-Logo-Big.jpg\",\"caption\":\"Editorial Staff\"},\"url\":\"https:\/\/www.wpallimport.com\/author\/editorial-staff\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What Does WP_DEBUG Do? - WP All Import","description":"Learn what WP_DEBUG does and how to use it to enable debugging in WordPress, either on its own or with WP Debug Toolkit.","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.wpallimport.com\/what-does-wp_debug-do\/","og_locale":"en_US","og_type":"article","og_title":"What Does WP_DEBUG Do? - WP All Import","og_description":"Learn what WP_DEBUG does and how to use it to enable debugging in WordPress, either on its own or with WP Debug Toolkit.","og_url":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/","og_site_name":"WP All Import","article_author":"https:\/\/www.facebook.com\/groups\/wpallimport","article_published_time":"2026-03-04T12:19:14+00:00","article_modified_time":"2026-03-27T12:12:14+00:00","og_image":[{"width":1801,"height":952,"url":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5.png","type":"image\/png"}],"author":"Editorial Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Editorial Staff","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#article","isPartOf":{"@id":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/"},"author":{"name":"Editorial Staff","@id":"https:\/\/www.wpallimport.com\/#\/schema\/person\/213","url":"https:\/\/www.wpallimport.com\/author\/editorial-staff\/"},"headline":"What Does WP_DEBUG Do?","datePublished":"2026-03-04T12:19:14+00:00","dateModified":"2026-03-27T12:12:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/"},"wordCount":576,"commentCount":0,"publisher":{"@id":"https:\/\/www.wpallimport.com\/#organization"},"image":{"@id":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#primaryimage"},"thumbnailUrl":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5-1024x541.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/","url":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/","name":"What Does WP_DEBUG Do? - WP All Import","isPartOf":{"@id":"https:\/\/www.wpallimport.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#primaryimage"},"image":{"@id":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#primaryimage"},"thumbnailUrl":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5-1024x541.png","datePublished":"2026-03-04T12:19:14+00:00","dateModified":"2026-03-27T12:12:14+00:00","description":"Learn what WP_DEBUG does and how to use it to enable debugging in WordPress, either on its own or with WP Debug Toolkit.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.wpallimport.com\/what-does-wp_debug-do\/#primaryimage","url":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5.png","contentUrl":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/image-5.png","width":1801,"height":952},{"@type":"WebSite","@id":"https:\/\/www.wpallimport.com\/#website","url":"https:\/\/www.wpallimport.com\/","name":"WP All Import","description":"Import XML &amp; CSV to WordPress","publisher":{"@id":"https:\/\/www.wpallimport.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wpallimport.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.wpallimport.com\/#organization","name":"WP All Import","url":"https:\/\/www.wpallimport.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.wpallimport.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2020\/02\/logo-v5-no-text.svg","contentUrl":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2020\/02\/logo-v5-no-text.svg","width":199,"height":37,"caption":"WP All Import"},"image":{"@id":"https:\/\/www.wpallimport.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.wpallimport.com\/#\/schema\/person\/213","name":"Editorial Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.wpallimport.com\/#\/schema\/person\/image\/213","url":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/WP-All-Import-Logo-Big.jpg","contentUrl":"https:\/\/www.wpallimport.com\/wp-content\/uploads\/2026\/03\/WP-All-Import-Logo-Big.jpg","caption":"Editorial Staff"},"url":"https:\/\/www.wpallimport.com\/author\/editorial-staff\/"}]}},"_links":{"self":[{"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/posts\/13183205","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/users\/82597"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/comments?post=13183205"}],"version-history":[{"count":0,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/posts\/13183205\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/media?parent=13183205"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/categories?post=13183205"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/tags?post=13183205"},{"taxonomy":"content_author","embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/content_author?post=13183205"},{"taxonomy":"cta","embeddable":true,"href":"https:\/\/www.wpallimport.com\/wp-json\/wp\/v2\/cta?post=13183205"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}