{"id":12405915,"date":"2026-06-04T13:53:04","date_gmt":"2026-06-04T05:53:04","guid":{"rendered":"https:\/\/www.likacloud.com\/knowledge\/%e6%8f%90%e5%8d%87%e7%bd%91%e7%ab%99%e9%80%9f%e5%ba%a6%ef%bc%9awordpress%e4%bc%98%e5%8c%96%e7%bb%88%e6%9e%81%e6%8c%87%e5%8d%97%e4%b8%8e%e5%ae%9e%e6%88%98%e6%8a%80%e5%b7%a7\/"},"modified":"2026-06-04T14:03:55","modified_gmt":"2026-06-04T06:03:55","slug":"wordpress-speed-optimization-guide-e7-9f-a5-e8-af-86","status":"publish","type":"knowledge_post","link":"https:\/\/www.likacloud.com\/en\/knowledge\/wordpress\/wordpress-speed-optimization-guide-e7-9f-a5-e8-af-86\/","title":{"rendered":"Improving Website Speed: The Ultimate Guide to WordPress Optimization and Practical Tips"},"content":{"rendered":"<p class=\"wp-block-paragraph\">The performance of the backend is the foundation of a website\u2019s speed. An oversized database and unoptimized queries can significantly slow down the time it takes to generate web pages.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Optimize database tables<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">After long-term use of WordPress, the database may contain\u2026 <code data-no-auto-translation=\"\">wp_posts<\/code> and <code data-no-auto-translation=\"\">wp_options<\/code> Waiting for tables to be processed can generate a large amount of redundant data, such as revised versions of articles, automatic drafts, and spam comments. Regularly cleaning this data can significantly reduce the size of the database. You can use plugins like WP-Optimize or Advanced Database Cleaner to safely perform this task. For more advanced users, you can also manually execute optimization commands through phpMyAdmin.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Enable object caching.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Object caching can store the results of database queries in memory, which helps to avoid duplicate queries. WordPress supports the use of object caching through\u2026 <code data-no-auto-translation=\"\">wp_cache<\/code> The series of functions implements object caching, but the cache needs to be persisted on a backend (such as Redis or Memcached) to achieve its maximum effectiveness. After installing Redis and configuring the corresponding WordPress plugin (such as Redis Object Cache), the loading speed of dynamic content on the website will improve significantly.<\/p>\n<!-- AUTO_INTERNAL_LINKS_START --><p>Recommended Reading <a href=\"https:\/\/www.likacloud.com\/en\/pl\/knowledge\/wordpress\/wordpress-speed-optimization-guide-12401788\/\">Ultimate Guide to WordPress Website Speed Optimization: From Basic Configuration to Advanced Techniques<\/a>\u3002<\/p><!-- AUTO_INTERNAL_LINKS_END -->\n\n\n\n\n<p class=\"wp-block-paragraph\">The following is\u2026 <code data-no-auto-translation=\"\">wp-config.php<\/code> Example of adding Redis object caching configuration:<\/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<pre class=\"wp-block-code\" data-no-auto-translation=\"\"><code class=\"language-php\" data-no-auto-translation=\"\">\/\/ \u5728 wp-config.php \u4e2d\u5b9a\u4e49 Redis \u914d\u7f6e\ndefine(&#039;WP_REDIS_HOST&#039;, &#039;127.0.0.1&#039;);\ndefine(&#039;WP_REDIS_PORT&#039;, 6379);\ndefine(&#039;WP_REDIS_TIMEOUT&#039;, 1);\ndefine(&#039;WP_REDIS_READ_TIMEOUT&#039;, 1);<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Front-end resource and rendering optimization<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Even if the backend responds quickly, cumbersome front-end resources can cause lagging or sluggish performance in the browser. Optimizing the front-end loading and rendering processes is of utmost importance.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Compressing and merging files<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The number and size of CSS and JavaScript files directly affect the loading time. You should:<br \/>\n1.  \u538b\u7f29\u8fd9\u4e9b\u6587\u4ef6\uff0c\u79fb\u9664\u6240\u6709\u4e0d\u5fc5\u8981\u7684\u7a7a\u683c\u3001\u6ce8\u91ca\u548c\u6362\u884c\u7b26\u3002<br \/>\n2.  \u5c06\u591a\u4e2a\u5c0f\u6587\u4ef6\u5408\u5e76\u4e3a\u66f4\u5c11\u7684\u5927\u6587\u4ef6\uff0c\u4ee5\u51cf\u5c11 HTTP \u8bf7\u6c42\u6570\u3002<br \/>\nPlugins like Autoptimize or W3 Total Cache can automatically perform these tasks. Additionally, you can ensure that the relevant scripts are only loaded on the pages that need them by using appropriate mechanisms. <code data-no-auto-translation=\"\">wp_enqueue_script<\/code> Function dependencies and conditional loading of parameters.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Implement lazy loading<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Lazy loading technology delays the loading of images and videos that are outside the visible area of the screen until the user scrolls to that location. This can significantly reduce the initial page loading time. Starting from WordPress 5.5, lazy loading of images is enabled by default in the core software. You can also use plugins like a3 Lazy Load for more comprehensive control, including the ability to lazy-load iframes and background images.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Advanced caching strategies<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Caching is one of the most effective ways to improve the speed of WordPress, and it operates at several different levels.<\/p>\n<!-- AUTO_INTERNAL_LINKS_START --><p>Recommended Reading <a href=\"https:\/\/www.likacloud.com\/en\/pl\/knowledge\/wordpress\/wordpress-speed-optimization-ultimate-guide-2026\/\">The Ultimate Guide to Optimizing WordPress Website Speed: A Complete Strategy from Analysis to Implementation<\/a>\u3002<\/p><!-- AUTO_INTERNAL_LINKS_END -->\n\n\n\n\n<h3 class=\"wp-block-heading\">Utilize page caching<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Page caching takes the dynamically generated complete HTML pages and converts them into static files, which are then stored for future use. When subsequent users access the site, the server simply serves these static files, completely bypassing the PHP execution and database query processes. Server-level solutions (such as Nginx\u2019s FastCGI caching) are the most efficient for this purpose. For users who host their websites, plugins like WP Rocket or W3 Total Cache can also significantly improve website performance by providing additional caching capabilities.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Set up browser caching<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Browser caching (also known as client-side caching) refers to the mechanism where a user\u2019s browser stores static resources such as images, CSS files, and JavaScript scripts locally. As long as the cached resources are still valid, the browser does not need to re-download them when the user visits your website again or navigates to other pages. This is typically achieved by configuring the server to set appropriate caching parameters. <code data-no-auto-translation=\"\">.htaccess<\/code> (Apache) \u6216 <code data-no-auto-translation=\"\">nginx.conf<\/code> This is achieved using an Nginx configuration file to set the expiration time for resources.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The following is an example of setting browser cache expiration headers in an Nginx configuration:<\/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<pre class=\"wp-block-code\" data-no-auto-translation=\"\"><code class=\"language-nginx\" data-no-auto-translation=\"\">location ~* .(jpg|jpeg|png|gif|ico|css|js)$ {\n    expires 1y;\n    add_header Cache-Control &quot;public, immutable&quot;;\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Server and hosting environment optimization<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The ultimate speed of a website is limited by the underlying environment in which it runs. Choosing the right server and configuring it correctly is fundamental.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Select a high-performance host.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Shared hosting accounts usually have limited resources and are not suitable for websites with high traffic. Consider upgrading to:<br \/>\n-   VPS\uff08\u865a\u62df\u4e13\u7528\u670d\u52a1\u5668\uff09\uff1a\u63d0\u4f9b\u72ec\u4eab\u7684 CPU \u548c\u5185\u5b58\u8d44\u6e90\uff0c\u9700\u8981\u4e00\u5b9a\u7684\u670d\u52a1\u5668\u7ba1\u7406\u77e5\u8bc6\u3002<br \/>\n-   \u6258\u7ba1\u578b WordPress \u4e3b\u673a\uff1a\u63d0\u4f9b\u5546\u9488\u5bf9 WordPress \u8fdb\u884c\u4e86\u6df1\u5ea6\u4f18\u5316\uff08\u5982 LiteSpeed \u670d\u52a1\u5668\u3001\u5185\u7f6e\u7f13\u5b58\uff09\uff0c\u7ba1\u7406\u65b9\u4fbf\u3002<br \/>\n-   \u4e91\u4e3b\u673a\uff1a\u5982 AWS\u3001Google Cloud\uff0c\u5f39\u6027\u5f3a\uff0c\u53ef\u6309\u9700\u6269\u5c55\u8d44\u6e90\u3002<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Configuring PHP and HTTP\/2<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Make sure you are running a supported and up-to-date version of PHP (such as PHP 7.4 or 8.x), as newer versions offer significant performance improvements. Additionally, enable the HTTP\/2 protocol on your server. HTTP\/2 supports multiplexing, which allows multiple resources to be transmitted concurrently over a single connection, addressing the head-of-line blocking issue associated with HTTP\/1.1 and effectively enhancing the efficiency of resource loading.<\/p>\n<!-- AUTO_INTERNAL_LINKS_START --><p>Recommended Reading <a href=\"https:\/\/www.likacloud.com\/en\/pl\/knowledge\/wordpress\/wordpress-website-performance-optimization-guide-database-cdn\/\">A Comprehensive Guide to Deeply Optimizing the Performance of WordPress Websites: A Complete Practical Guide from Databases to CDNs<\/a>\u3002<\/p><!-- AUTO_INTERNAL_LINKS_END -->\n\n\n\n\n<h2 class=\"wp-block-heading\">summarize<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress speed optimization is a systematic effort that requires coordination across multiple aspects, including the front end, back end, caching, and server environment. Start with immediate measures such as implementing caching and optimizing images, and gradually move on to cleaning the database and optimizing the code. Regularly use tools like PageSpeed Insights or GTmetrix to monitor the effectiveness of your optimizations, and make sure to keep the WordPress core, themes, and plugins up to date. Remember, the goal of optimization is to provide the best user experience, which not only enhances user satisfaction but also plays a crucial role in search engine rankings.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ Frequently Asked Questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What should I do if the website speed has actually slowed down after optimization?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">This is usually caused by improper configuration of certain optimization measures or conflicts between them. For example, enabling multiple caching plugins at the same time, incorrect CDN settings, or issues with CSS\/JS compression and merging can lead to errors.<\/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<p class=\"wp-block-paragraph\">Please disable each of the recent optimization changes one by one, and test the speed after each disablement to identify the root cause of the issue. Check the browser console for any JavaScript errors, as well as the server error logs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Are free caching plugins sufficient?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For small and medium-sized websites as well as personal blogs, many excellent free caching plugins (such as W3 Total Cache and WP Super Cache) are more than sufficient. They offer essential features such as page caching, browser caching, and database optimization.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The drawbacks of free plugins may include the lack of certain advanced features (such as delayed loading of JavaScript, generation of critical CSS files), more detailed control options, and official support. If a website has high commercial value or complex requirements, investing in a premium plugin (such as WP Rocket) can usually save a significant amount of time spent on configuration and deliver better results.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How often does the database need to be cleaned?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">It depends on the frequency of website updates. A highly active news website or a large membership site may need to be cleaned up weekly, while a static corporate website might only need to be cleaned up quarterly or semi-annually.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It is recommended to first check the specific data volume of each table using phpMyAdmin or a database cleanup plugin, especially\u2026 <code data-no-auto-translation=\"\">wp_posts<\/code>(Follow the revised version) and <code data-no-auto-translation=\"\">wp_options<\/code>(Follow the automatic data loading process.) Develop the habit of conducting regular checks, rather than blindly executing them at fixed intervals. Make sure to perform a complete backup before any cleanup actions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Is it necessary to use a CDN?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For blogs or small business websites whose main visitors come from a single region, a CDN (Content Delivery Network) may not be \u201cessential\u201d if the hosting itself is fast enough. However, a CDN is highly recommended \u2013 or even essential \u2013 in the following situations:<br \/>\n1.  \u7f51\u7ad9\u8bbf\u5ba2\u904d\u5e03\u5168\u7403\u3002<br \/>\n2.  \u7f51\u7ad9\u5305\u542b\u5927\u91cf\u9759\u6001\u8d44\u6e90\uff08\u56fe\u7247\u3001\u89c6\u9891\u3001\u4e0b\u8f7d\u6587\u4ef6\uff09\u3002<br \/>\n3.  \u6d41\u91cf\u8f83\u5927\uff0c\u9700\u8981\u51cf\u8f7b\u6e90\u670d\u52a1\u5668\u8d1f\u8f7d\u3002<br \/>\n4.  \u5e0c\u671b\u63d0\u5347\u5b89\u5168\u6027\uff0c\u62b5\u5fa1 DDoS \u653b\u51fb\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">CDN reduces latency significantly by distributing content to edge nodes around the world, allowing users to retrieve data from the node that is geographically closest to them. Many service providers (such as Cloudflare) offer free CDN packages, making it possible to experience the benefits of CDN at a low cost.<\/p>","protected":false},"excerpt":{"rendered":"<p>This article systematically explains the optimization methods of WordPress from four aspects: backend performance, front-end resources, caching strategies, and server environment. It covers practical techniques such as database cleaning, Redis object caching, file compression and merging, lazy loading, page caching, and host selection, helping websites achieve significant speed improvements.<\/p>","protected":false},"author":7,"featured_media":0,"template":"","meta":{"_acf_changed":false,"footnotes":""},"tags":[1929,4184,2515,424,455],"knowledge_category":[280],"class_list":["post-12405915","knowledge_post","type-knowledge_post","status-publish","hentry","tag-wordpress","tag-4184","tag-object-cache","tag-database-cleanup","tag-site-speed-optimization","knowledge_category-wordpress"],"acf":{"site_seo_keywords":"WordPress\u4f18\u5316,\u7f51\u7ad9\u901f\u5ea6\u63d0\u5347,\u6570\u636e\u5e93\u6e05\u7406,\u5bf9\u8c61\u7f13\u5b58,\u524d\u7aef\u538b\u7f29,\u61d2\u52a0\u8f7d,\u9875\u9762\u7f13\u5b58,\u9ad8\u6027\u80fd\u4e3b\u673a"},"_links":{"self":[{"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_posts\/12405915","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":3,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_posts\/12405915\/revisions"}],"predecessor-version":[{"id":12405931,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_posts\/12405915\/revisions\/12405931"}],"wp:attachment":[{"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/media?parent=12405915"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/tags?post=12405915"},{"taxonomy":"knowledge_category","embeddable":true,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_category?post=12405915"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}