{"id":12403194,"date":"2026-06-03T06:08:09","date_gmt":"2026-06-02T22:08:09","guid":{"rendered":"https:\/\/www.likacloud.com\/knowledge\/wordpress%e4%bc%98%e5%8c%96%e7%bb%88%e6%9e%81%e6%8c%87%e5%8d%97%ef%bc%9a%e5%85%a8%e6%96%b9%e4%bd%8d%e6%8f%90%e5%8d%87%e7%bd%91%e7%ab%99%e9%80%9f%e5%ba%a6%e4%b8%8e%e6%80%a7%e8%83%bd%e7%9a%84%e7%ad%96\/"},"modified":"2026-06-03T19:54:01","modified_gmt":"2026-06-03T11:54:01","slug":"wordpress-speed-optimization-guide-12403194","status":"publish","type":"knowledge_post","link":"https:\/\/www.likacloud.com\/en\/knowledge\/wordpress\/wordpress-speed-optimization-guide-12403194\/","title":{"rendered":"WordPress Optimization Ultimate Guide: Strategies for Comprehensively Improving Website Speed and Performance"},"content":{"rendered":"<h2 class=\"wp-block-heading\">The core of website speed optimization: caching and compression<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The root cause of slow WordPress website speeds is often the need to dynamically generate pages for each request. Implementing a caching mechanism is the first step in solving this problem. By using plugins or server configurations, we can make previously generated pages static, which significantly reduces the time required for database queries and PHP processing.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Implementation targets and database caching<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For pages with less dynamic content, page-level caching is the best choice.<br \/>\n<code data-no-auto-translation=\"\">W3 Total Cache<\/code>and<code data-no-auto-translation=\"\">WP Rocket<\/code>Plugins can easily implement this functionality. Additionally, caching the results of database queries is also very important.<code data-no-auto-translation=\"\">Redis<\/code>Or<code data-no-auto-translation=\"\">Memcached<\/code>Object caching systems can store the results of database queries in the server\u2019s memory, which speeds up the response time for subsequent identical queries. WordPress utilizes this technology to\u2026<code data-no-auto-translation=\"\">wp-content\/object-cache.php<\/code>The file supports caching of external objects.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Enable Gzip and Brotli compression.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Compressing files before transmission can significantly reduce the amount of data sent over the network. Gzip is a widely supported compression standard, while Brotli offers even higher compression ratios. This feature can usually be enabled at the cache plugin level or at the server level (for example, in the configuration files of Nginx or Apache). To enable Gzip in Nginx, for instance:<\/p>\n<!-- AUTO_INTERNAL_LINKS_START --><p>Recommended Reading <a href=\"https:\/\/www.likacloud.com\/en\/pl\/knowledge\/wordpress\/wordpress-performance-optimization-guide-12402497\/\">WordPress Optimization: A Comprehensive Guide to Performance Improvement \u2013 From Basics to Advanced Techniques<\/a>\u3002<\/p><!-- AUTO_INTERNAL_LINKS_END -->\n\n\n\n\n<pre class=\"wp-block-code\" data-no-auto-translation=\"\"><code class=\"language-nginx\" data-no-auto-translation=\"\">gzip on;\ngzip_vary on;\ngzip_min_length 1024;\ngzip_types text\/plain text\/css text\/xml text\/javascript application\/javascript application\/xml+rss application\/json;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Optimization strategies for loading front-end resources<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Even if the backend processing is fast, large amounts of front-end resources (such as CSS, JavaScript, and images) can still slow down the page rendering speed. Optimizing the way these resources are loaded is crucial for improving the user experience.<\/p>\n<!-- AUTO_SYNCED_PATTERN_INSERT_START -->\n\r\n<div class=\"flex justify-between items-center flex-col lg:flex-row xl:flex-col 2xl:flex-row gap-6 sm:gap-8 rounded-lg border border-gray-200 dark:border-gray-700 p-4 mb-8 lg:mb-10 sm:p-6 bg-white dark:bg-gray-750 shadow-md transition-colors duration-300\"\r\n     data-link=\"https:\/\/www.likacloud.com\/en\/tolink\/ultahost-wordpress-hosting\/\">\r\n     \r\n  <div class=\"flex flex-col gap-3 gap-4 sm:gap-6 w-full\">\r\n    <strong class=\"text-2xl font-semibold text-gray-900 dark:text-gray-200\">\r\n      UltaHost WordPress Hosting    <\/strong>\r\n    <div class=\"text-gray-600 dark:text-gray-300 word-word\">30-day refund guarantee, unlimited bandwidth and database usage, free DDoS protection; purchase for 3 years and get a discount of 50%.<\/div>\r\n  <\/div>\r\n\r\n  <div class=\"flex items-center flex-col md:flex-row lg:flex-col xl:flex-row 2xl:flex-col gap-6 shrink-0\">\r\n          <a href=\"https:\/\/www.likacloud.com\/en\/tolink\/ultahost-wordpress-hosting\/\">\r\n                  <img decoding=\"async\" src=\"https:\/\/www.likacloud.com\/wp-content\/uploads\/2025\/12\/20251227020448.webp\" alt=\"UltaHost LOGO\" class=\"content-promotion-card-icon h-9 min-h-9 dark:hidden\" title=\"\">\r\n          <img decoding=\"async\" src=\"https:\/\/www.likacloud.com\/wp-content\/uploads\/2025\/12\/20251229052118.webp\" alt=\"UltaHost LOGO\" class=\"content-promotion-card-icon h-9 min-h-9 hidden dark:block\" title=\"\">\r\n              <\/a>\r\n    \r\n    <a href=\"https:\/\/www.likacloud.com\/en\/tolink\/ultahost-wordpress-hosting\/\"\r\n       class=\"bg-blue-500 w-full md:w-auto lg:w-full xl:w-auto 2xl:w-full text-center !text-white dark:!text-gray-200 !px-5 !py-1.5 rounded-full hover:bg-blue-600 transition-colors\">\r\n       access page    <\/a>\r\n  <\/div>\r\n<\/div>\n<!-- AUTO_SYNCED_PATTERN_INSERT_END -->\n\n\n\n\n\n<h3 class=\"wp-block-heading\">Merge, compress, and delay the loading of scripts.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Reducing the number of HTTP requests is an essential principle in front-end optimization. Combine multiple CSS or JavaScript files into a few fewer files and compress them using tools such as UglifyJS or CSSNano. Additionally, defer the loading of non-critical JavaScript components (e.g., comment boxes, social media widgets) to prevent them from blocking the rendering of the page\u2019s main content (the critical rendering path).<code data-no-auto-translation=\"\">async<\/code>Or<code data-no-auto-translation=\"\">defer<\/code>This can be achieved by using attributes.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Optimizing images and using the WebP format<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Images are usually the largest files on a page. It is essential to compress them and use responsive image techniques.<code data-no-auto-translation=\"\">srcset<\/code>Properties. Modern formats like WebP are much smaller in size than JPEG or PNG, while maintaining the same quality. Images uploaded can be automatically converted to WebP format using plugins. Additionally, implementing lazy loading for images ensures that they are only loaded when they come into view, which significantly reduces the initial page load time.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Accelerate using a content delivery network<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Content Delivery Networks (CDNs) store the static resources of your website (such as images, CSS, and JS files) on edge nodes located around the world. This allows users to retrieve these resources from the server closest to their location, thereby reducing latency. Integrating your website with a reliable CDN service (such as Cloudflare or KeyCDN) is an essential optimization for attracting visitors from all over the globe.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">In-depth cleaning and maintenance of databases<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">As the website continues to operate, the database will accumulate a large amount of redundant data, such as revised versions of content, spam comments, and unused options. Regularly cleaning and maintaining the database is essential for ensuring the efficient operation of the backend.<\/p>\n<!-- AUTO_INTERNAL_LINKS_START --><p>Recommended Reading <a href=\"https:\/\/www.likacloud.com\/en\/pl\/knowledge\/wordpress\/wordpress-speed-optimization-guide-8420\/\">WordPress Optimization Ultimate Guide: 20 Practical Tips to Improve Website Speed and Ranking<\/a>\u3002<\/p><!-- AUTO_INTERNAL_LINKS_END -->\n\n\n\n\n<h3 class=\"wp-block-heading\">Clean up the revised versions of the articles and optimize the data tables.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Every time you save a draft of an article, WordPress creates a revision version of that article. This can lead to\u2026<code data-no-auto-translation=\"\">wp_posts<\/code>The table has expanded dramatically. This can be addressed by\u2026<code data-no-auto-translation=\"\">wp-config.php<\/code>Constants are defined in the file to limit the number of revision versions, and historical revision versions are periodically cleaned up.<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-auto-translation=\"\"><code class=\"language-php\" data-no-auto-translation=\"\">define(&#039;WP_POST_REVISIONS&#039;, 5); \/\/ \u9650\u5236\u6bcf\u7bc7\u6587\u7ae0\u6700\u591a\u4fdd\u75595\u4e2a\u4fee\u8ba2\u7248\ndefine(&#039;AUTOSAVE_INTERVAL&#039;, 300); \/\/ \u5c06\u81ea\u52a8\u4fdd\u5b58\u95f4\u9694\u8bbe\u7f6e\u4e3a300\u79d2\uff085\u5206\u949f\uff09<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Additionally, use<code data-no-auto-translation=\"\">OPTIMIZE TABLE<\/code>Or<code data-no-auto-translation=\"\">phpMyAdmin<\/code>The \u201cOptimize Table\u201d feature can organize the fragments of a data table and improve query efficiency.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Remove unnecessary plugin and theme data.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Deactivated plugins and replaced themes may sometimes leave behind settings and option records in the database. You can safely remove these records by using a specialized database cleanup plugin (be sure to choose one from a reputable source with caution) or by performing manual queries.<code data-no-auto-translation=\"\">wp_options<\/code>Isolated data in the table.<\/p>\n<!-- AUTO_SYNCED_PATTERN_INSERT_START -->\n\r\n<div class=\"flex justify-between items-center flex-col lg:flex-row xl:flex-col 2xl:flex-row gap-6 sm:gap-8 rounded-lg border border-gray-200 dark:border-gray-700 p-4 mb-8 lg:mb-10 sm:p-6 bg-white dark:bg-gray-750 shadow-md transition-colors duration-300\"\r\n     data-link=\"https:\/\/www.likacloud.com\/en\/tolink\/hosting-shared-hosting\/\">\r\n     \r\n  <div class=\"flex flex-col gap-3 gap-4 sm:gap-6 w-full\">\r\n    <strong class=\"text-2xl font-semibold text-gray-900 dark:text-gray-200\">\r\n      hosting.com Shared Hosting    <\/strong>\r\n    <div class=\"text-gray-600 dark:text-gray-300 word-word\">High performance with AMD EPYC CPUs, NVMe SSD storage and LiteSpeed, 24\/7, 24x7 expert in-house support, advanced security measures including SSL, brute force, malware and DDoS protection, savings of up to 73%<\/div>\r\n  <\/div>\r\n\r\n  <div class=\"flex items-center flex-col md:flex-row lg:flex-col xl:flex-row 2xl:flex-col gap-6 shrink-0\">\r\n          <a href=\"https:\/\/www.likacloud.com\/en\/tolink\/hosting-shared-hosting\/\">\r\n                  <img decoding=\"async\" src=\"https:\/\/www.likacloud.com\/wp-content\/uploads\/2025\/09\/20250901222940.svg\" alt=\"hosting.com LOGO\" class=\"content-promotion-card-icon h-9 min-h-9 dark:hidden\" title=\"\">\r\n          <img decoding=\"async\" src=\"https:\/\/www.likacloud.com\/wp-content\/uploads\/2025\/12\/20251228220957.webp\" alt=\"hosting.com LOGO\" class=\"content-promotion-card-icon h-9 min-h-9 hidden dark:block\" title=\"\">\r\n              <\/a>\r\n    \r\n    <a href=\"https:\/\/www.likacloud.com\/en\/tolink\/hosting-shared-hosting\/\"\r\n       class=\"bg-blue-500 w-full md:w-auto lg:w-full xl:w-auto 2xl:w-full text-center !text-white dark:!text-gray-200 !px-5 !py-1.5 rounded-full hover:bg-blue-600 transition-colors\">\r\n       access page    <\/a>\r\n  <\/div>\r\n<\/div>\n<!-- AUTO_SYNCED_PATTERN_INSERT_END -->\n\n\n\n\n\n<h2 class=\"wp-block-heading\">Advanced configurations at the server and PHP levels<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The operating environment of a website is the foundation of its performance. Optimizing server and PHP configurations can fundamentally enhance the processing capabilities of WordPress.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Upgrade to a later version of PHP.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Using a newer version of PHP is one of the most direct and effective ways to improve performance. Compared to PHP 5.6, versions such as PHP 7.4 or PHP 8.x can increase execution speed several times over while using less memory. Please make sure that your themes and plugins are compatible with the new PHP version, and then upgrade the PHP version in your hosting control panel as soon as possible.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Adjusting PHP memory limits and timeout settings<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress may require more memory when handling complex operations. If you encounter a \u201cmemory exhaustion\u201d error, you can\u2026<code data-no-auto-translation=\"\">wp-config.php<\/code>Add memory restrictions to the system.<\/p>\n<!-- AUTO_INTERNAL_LINKS_START --><p>Recommended Reading <a href=\"https:\/\/www.likacloud.com\/en\/pl\/knowledge\/wordpress\/wordpress-speed-seo-optimization-guide-2026\/\">How to significantly improve website speed and SEO rankings through a comprehensive WordPress optimization strategy<\/a>\u3002<\/p><!-- AUTO_INTERNAL_LINKS_END -->\n\n\n\n\n<pre class=\"wp-block-code\" data-no-auto-translation=\"\"><code class=\"language-php\" data-no-auto-translation=\"\">define(&#039;WP_MEMORY_LIMIT&#039;, &#039;256M&#039;);<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">At the same time, appropriately adjust the execution time of PHP.<code data-no-auto-translation=\"\">max_execution_time<\/code>) and the input time (<code data-no-auto-translation=\"\">max_input_time<\/code>This can handle time-consuming operations such as backups and imports.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Choose high-performance server software.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Consider using high-performance web server software such as Nginx, which is generally more efficient than the traditional Apache in handling static files and high-concurrency requests. For large websites, you can configure Nginx as a reverse proxy, in combination with Apache, or use Nginx directly with PHP-FPM.<\/p>\n<!-- AUTO_SYNCED_PATTERN_INSERT_START -->\n\r\n<div class=\"flex justify-between items-center flex-col lg:flex-row xl:flex-col 2xl:flex-row gap-6 sm:gap-8 rounded-lg border border-gray-200 dark:border-gray-700 p-4 mb-8 lg:mb-10 sm:p-6 bg-white dark:bg-gray-750 shadow-md transition-colors duration-300\"\r\n     data-link=\"https:\/\/www.likacloud.com\/en\/tolink\/interserver-webhosting\/\">\r\n     \r\n  <div class=\"flex flex-col gap-3 gap-4 sm:gap-6 w-full\">\r\n    <strong class=\"text-2xl font-semibold text-gray-900 dark:text-gray-200\">\r\n      InterServer Shared Hosting    <\/strong>\r\n    <div class=\"text-gray-600 dark:text-gray-300 word-word\">Shared hosting $2.50 USD per month , first month $0.1 USD promo code tryinterserver, 461 cloud apps scripts, one click install.<\/div>\r\n  <\/div>\r\n\r\n  <div class=\"flex items-center flex-col md:flex-row lg:flex-col xl:flex-row 2xl:flex-col gap-6 shrink-0\">\r\n          <a href=\"https:\/\/www.likacloud.com\/en\/tolink\/interserver-webhosting\/\">\r\n                  <img decoding=\"async\" src=\"https:\/\/www.likacloud.com\/wp-content\/uploads\/2025\/12\/20251228045033.svg\" alt=\"InterServer LOGO\" class=\"content-promotion-card-icon h-9 min-h-9 dark:hidden\" title=\"\">\r\n          <img decoding=\"async\" src=\"https:\/\/www.likacloud.com\/wp-content\/uploads\/2025\/12\/20251229054830.webp\" alt=\"InterServer LOGO\" class=\"content-promotion-card-icon h-9 min-h-9 hidden dark:block\" title=\"\">\r\n              <\/a>\r\n    \r\n    <a href=\"https:\/\/www.likacloud.com\/en\/tolink\/interserver-webhosting\/\"\r\n       class=\"bg-blue-500 w-full md:w-auto lg:w-full xl:w-auto 2xl:w-full text-center !text-white dark:!text-gray-200 !px-5 !py-1.5 rounded-full hover:bg-blue-600 transition-colors\">\r\n       access page    <\/a>\r\n  <\/div>\r\n<\/div>\n<!-- AUTO_SYNCED_PATTERN_INSERT_END -->\n\n\n\n\n\n<h2 class=\"wp-block-heading\">summarize<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress optimization is a systematic process that involves every aspect of the system, from caching and the front end to the database and the server environment. The key lies in reducing unnecessary processing, compressing data transmitted over the network, and making resource loading more efficient. By implementing these strategies, you can significantly improve the speed of your website, its performance in key web metrics, and the overall user experience. Optimization is an ongoing process; it is recommended to use tools like Google PageSpeed Insights or GTmetrix regularly to monitor and make necessary adjustments.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ Frequently Asked Questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Which is better, free caching plugins or paid plugins?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">It depends on your requirements and technical skills. For example\u2026<code data-no-auto-translation=\"\">WP Super Cache<\/code>Such free plugins offer reliable page caching capabilities, which are sufficient for most small and medium-sized websites. Paid plugins, on the other hand, provide additional features and improvements...<code data-no-auto-translation=\"\">WP Rocket<\/code>It usually offers more comprehensive optimization features out of the box (such as lazy loading, database cleanup, CDN integration), as well as a more convenient one-click configuration process, which can save a lot of time spent on research and debugging.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What should I do if the website images don\u2019t update after enabling CDN?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">This is a common issue caused by CDN (Content Delivery Network) caching. Typically, CDN service providers offer options to \u201cclear the cache\u201d or \u201crefresh specific files.\u201d You can log in to the CDN provider\u2019s control panel to manually clear the cache for the entire website or only refresh the URLs of the updated images. Some CDN plugins also incorporate this functionality. Additionally, you can set a shorter cache duration for static resources, or use file names with version numbers to force both the browser and the CDN to retrieve the latest versions of the files.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Even after the optimization, the website\u2019s speed test scores remain very low. What could be the possible reasons for this?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Low test scores can be caused by various factors. First, please ensure that you are logged in during the test (administrators usually bypass caching); make sure to log out or use incognito mode for the test. Next, check for any large, unoptimized elements, such as large videos or scripts from third-party services. The performance of the hosting server itself could be the underlying bottleneck. If you are using a shared hosting account, the resource limitations may not be sufficient to meet your needs; in this case, you should consider upgrading to a VPS or a dedicated server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to safely clean a database?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Before performing any database operations, it is essential to create a complete backup. You can use the backup tools or plugins provided by the hosting provider.<code data-no-auto-translation=\"\">UpdraftPlus<\/code>(Or through)<code data-no-auto-translation=\"\">phpMyAdmin<\/code>Export the database. For cleanup tasks, it is recommended to use a reputable cleanup plugin specifically designed for WordPress (check its reviews and update frequency). Avoid performing the cleanup directly on the database.<code data-no-auto-translation=\"\">phpMyAdmin<\/code>Running unfamiliar SQL commands in a database environment, especially when...<code data-no-auto-translation=\"\">DELETE<\/code>and<code data-no-auto-translation=\"\">DROP<\/code>Please be cautious with your statements to avoid accidentally deleting important data.<\/p>","protected":false},"excerpt":{"rendered":"<p>This article systematically introduces strategies for optimizing the performance of WordPress websites, covering key aspects such as caching mechanisms (page caching and object caching), Gzip\/Brotli compression, merging and deferred loading of front-end resources, the WebP image format, CDN (Content Delivery Network) acceleration, database maintenance, and upgrading PHP versions. These measures help website owners significantly improve the loading speed and operational efficiency of their websites.<\/p>","protected":false},"author":7,"featured_media":0,"template":"","meta":{"_acf_changed":false,"footnotes":""},"tags":[400,598,402,361,401],"knowledge_category":[280],"class_list":["post-12403194","knowledge_post","type-knowledge_post","status-publish","hentry","tag-wordpress-optimization","tag-frontend-optimization","tag-performance-improvement","tag-cache-strategy","tag-website-speed","knowledge_category-wordpress"],"acf":{"site_seo_keywords":"WordPress\u4f18\u5316,\u7f51\u7ad9\u901f\u5ea6\u63d0\u5347,\u7f13\u5b58\u7b56\u7565,Gzip\u538b\u7f29,WebP\u56fe\u7247,CDN\u52a0\u901f,PHP\u7248\u672c\u5347\u7ea7,\u6570\u636e\u5e93\u6e05\u7406"},"_links":{"self":[{"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_posts\/12403194","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_posts"}],"about":[{"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/types\/knowledge_post"}],"author":[{"embeddable":true,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/users\/7"}],"version-history":[{"count":4,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_posts\/12403194\/revisions"}],"predecessor-version":[{"id":12403931,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_posts\/12403194\/revisions\/12403931"}],"wp:attachment":[{"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/media?parent=12403194"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/tags?post=12403194"},{"taxonomy":"knowledge_category","embeddable":true,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_category?post=12403194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}