{"id":12391856,"date":"2026-04-16T18:44:04","date_gmt":"2026-04-16T10:44:04","guid":{"rendered":"https:\/\/www.likacloud.com\/knowledge\/wordpress%e4%bc%98%e5%8c%96%e5%ae%8c%e6%95%b4%e6%8c%87%e5%8d%97%ef%bc%9a20%e4%b8%aa%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%e6%a0%b8%e5%bf%83%e6%8a%80\/"},"modified":"2026-06-03T20:39:26","modified_gmt":"2026-06-03T12:39:26","slug":"wordpress-optimization-guide-20-speed-performance-tips","status":"publish","type":"knowledge_post","link":"https:\/\/www.likacloud.com\/en\/knowledge\/wordpress\/wordpress-optimization-guide-20-speed-performance-tips\/","title":{"rendered":"Complete WordPress Optimization Guide: 20 Essential Tips to Improve Website Speed and Performance"},"content":{"rendered":"<h2 class=\"wp-block-heading\">Core Optimization: Website Front-End Loading Speed<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Website loading speed is a fundamental aspect of user experience and SEO rankings. Front-end optimization directly affects the waiting time for visitors when they first access a website, and it is the area of WordPress optimization that yields the fastest results.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Practical methods for optimizing image resources<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Unoptimized images are the main culprit for slowing down website performance. Make sure to compress images using tools like TinyPNG or ShortPixel before uploading them to your media library to minimize their file size.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Using next-generation image formats (such as WebP) can significantly reduce file sizes. Many caching plugins or CDN services are capable of automatically providing these formats to browsers that support WebP. Additionally, it\u2019s always a good idea to add\u2026 <code data-no-auto-translation=\"\">alt<\/code> and <code data-no-auto-translation=\"\">title<\/code> Properties should be set correctly, along with appropriate dimension values. Lazy loading techniques can be used to defer the loading of images that are not part of the initial screen display. The core code can be designed to handle this process efficiently. <code data-no-auto-translation=\"\">wp_enqueue_script<\/code> Function added.<\/p>\n<!-- AUTO_INTERNAL_LINKS_START --><p>Recommended Reading <a href=\"https:\/\/www.likacloud.com\/vi\/knowledge\/wordpress\/ultimate-wordpress-optimization-guide-speed-ranking\/\">The Ultimate WordPress Optimization Guide for Improving Website Speed and Rankings<\/a>\u3002<\/p><!-- AUTO_INTERNAL_LINKS_END -->\n\n\n\n\n<h3 class=\"wp-block-heading\">Utilize caching mechanisms to reduce the server load.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Browser caching and page caching are powerful tools for optimizing website speed. By configuring the server\u2026 <code data-no-auto-translation=\"\">.htaccess<\/code> You can use files or plugins to instruct the browser to cache static resources (such as CSS, JS, and images) for a certain period of time.<\/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-apache\" data-no-auto-translation=\"\">&lt;IfModule mod_expires.c&gt;\nExpiresActive On\nExpiresByType image\/jpg &quot;access plus 1 year&quot;\nExpiresByType text\/css &quot;access plus 1 month&quot;\nExpiresByType application\/javascript &quot;access plus 1 month&quot;\n&lt;\/IfModule&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">At the same time, using plugins like WP Rocket or W3 Total Cache to generate static HTML page caches can prevent the need to perform complex PHP and database queries with each visit.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Merge and minimize CSS and JavaScript files.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Excessive HTTP requests can significantly impact loading times. Use plugins or build tools to merge multiple CSS and JS files into a single file, and then \u201cminify\u201d the resulting file by removing all unnecessary spaces, line breaks, and comments.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Many optimization plugins offer this feature. When implementing it, it is essential to pay attention to the loading order and use asynchronous (Async) or deferred (Defer) loading for non-critical JavaScript files to ensure that the critical rendering path is not blocked.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">In-depth Server and Backend Configuration<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The effectiveness of front-end optimizations is limited by server performance and back-end configuration. A stable and efficient back-end is the engine that drives a fast website.<\/p>\n<!-- AUTO_INTERNAL_LINKS_START --><p>Recommended Reading <a href=\"https:\/\/www.likacloud.com\/vi\/knowledge\/wordpress\/wordpress-optimization-guide-20-tips-speed-performance-8420\/\">WordPress Optimization Ultimate Guide: 20 Practical Tips to Improve Website Speed and Performance<\/a>\u3002<\/p><!-- AUTO_INTERNAL_LINKS_END -->\n\n\n\n\n<h3 class=\"wp-block-heading\">Choosing a high-performance hosting environment and PHP version<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Shared hosting accounts usually have limited resources, so it is recommended to upgrade to a dedicated WordPress hosting account, a VPS (Virtual Private Server), or a cloud server. Make sure that the server is running the latest and stable version of PHP (such as PHP 8.x), as the performance is significantly improved compared to older versions. You can do this through the hosting control panel or by... <code data-no-auto-translation=\"\">wp-config.php<\/code> Configure PHP memory limits in the settings. <code data-no-auto-translation=\"\">WP_MEMORY_LIMIT<\/code>\u3002<\/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_MEMORY_LIMIT&#039;, &#039;256M&#039;);<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Regular database cleanup and index optimization<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress databases that have been running for a long time can accumulate a large amount of redundant data, including revised versions, drafts, and spam comments. Regularly using plugins like WP-Optimize to clean up this data can significantly reduce the size of the database and improve query performance.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">At the same time, for the commonly used query fields (such as\u2026) <code data-no-auto-translation=\"\">wp_posts<\/code> In the table <code data-no-auto-translation=\"\">post_date<\/code>Add an index, but this operation should be done with caution. It is recommended to proceed under the guidance of a professional.<\/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<h3 class=\"wp-block-heading\">Improving the efficiency of dynamic queries by using object caching<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For websites with a lot of dynamic content, object caching is crucial. Install it. <code data-no-auto-translation=\"\">Redis<\/code> Or <code data-no-auto-translation=\"\">Memcached<\/code> Expand the functionality and integrate it with WordPress using plugins such as Redis Object Cache. This will store the results of database queries in memory, allowing for direct retrieval on subsequent requests, which significantly reduces the load on the database. <code data-no-auto-translation=\"\">wp-config.php<\/code> An example of the configuration is as follows:<\/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_REDIS_HOST&#039;, &#039;127.0.0.1&#039;);\ndefine(&#039;WP_REDIS_PORT&#039;, 6379);<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Strategies for streamlining plugins and themes<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Plugins and themes are the source of WordPress\u2019s flexibility, but they can also become a burden on performance. Implementing a strategy to minimize their use is key to keeping a website fast and responsive.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Audit and disable unnecessary plugins and features.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Regularly review the installed plugins, and disable or delete those that are no longer in use or whose functions can be replaced by other alternatives. Each plugin adds additional HTTP requests, PHP executions, and database queries to the system\u2019s workload.<\/p>\n<!-- AUTO_INTERNAL_LINKS_START --><p>Recommended Reading <a href=\"https:\/\/www.likacloud.com\/vi\/knowledge\/wordpress\/wordpress-optimization-guide-speed-performance-seo-e7-9f-a5-e8-af-86\/\">WordPress Optimization Ultimate Guide: Key Strategies for Improving Website Speed, Performance, and Ranking<\/a>\u3002<\/p><!-- AUTO_INTERNAL_LINKS_END -->\n\n\n\n\n<p class=\"wp-block-paragraph\">Similarly, many themes come with extensive feature panels and shortcodes. If you only use the basic functionality of the theme, you might consider switching to a more lightweight theme or disabling the unnecessary feature modules through the theme\u2019s settings.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Optimize the way plugins and themes are loaded.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Make sure that the CSS and JS files for plugins and themes are only loaded on the pages where they are needed. For example, the files related to a contact form plugin should not be loaded on article pages. This can usually be achieved through plugin settings or in the theme\u2019s configuration. <code data-no-auto-translation=\"\">functions.php<\/code> Conditional statements are used in the file to achieve this functionality.<\/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<pre class=\"wp-block-code\" data-no-auto-translation=\"\"><code class=\"language-php\" data-no-auto-translation=\"\">function my_deregister_scripts() {\n    if ( !is_page(&#039;contact&#039;) ) {\n        wp_dequeue_script(&#039;contact-form-plugin-script&#039;);\n    }\n}\nadd_action(&#039;wp_print_scripts&#039;, &#039;my_deregister_scripts&#039;, 100);<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Avoid using inefficient queries and hooks.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Some poorly designed plugins or theme codes may contain inefficient database queries (such as executing queries within loops) or make misuse of WordPress action hooks. <code data-no-auto-translation=\"\">wp_head<\/code>, <code data-no-auto-translation=\"\">wp_footer<\/code>Using developer plugins such as Query Monitor can help you identify these performance bottlenecks, allowing you to contact the developers for repairs or to find alternative solutions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Advanced Optimization and Continuous Monitoring<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">After completing the basic optimizations, website performance can be further enhanced through the use of advanced techniques and continuous monitoring.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Implementing a content delivery network to accelerate global access<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">CDN (Content Delivery Network) distributes your static resources to nodes around the world, allowing users to retrieve data from the node that is geographically closest to them, significantly reducing latency. This is particularly beneficial for websites with international visitors. Cloudflare, KeyCDN, and other services are excellent options, as they often integrate well with popular caching plugins.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Split the code and defer the loading of non-critical resources.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For modern, highly interactive websites, it is advisable to consider using code splitting techniques to load JavaScript modules on demand. Additionally, it is recommended to\u2026 <code data-no-auto-translation=\"\">loading=\u201dlazy\u201d<\/code> These properties apply not only to images but also to iframes and videos. For CSS that is not required for the initial page rendering (such as styles for pop-ups or specific pages), it can be marked as \u201cnon-critical CSS\u201d and loaded asynchronously (with a delay).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Utilize performance monitoring tools for iterative optimization.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Optimization is not a one-time solution; it requires continuous monitoring using specialized tools. Google PageSpeed Insights and GTmetrix provide comprehensive performance evaluations and suggestions for improvement. For real-time monitoring, tools like New Relic or Application Performance Monitoring (APM) can be used to gain in-depth insights into server-side performance, identifying slow queries and function calls.<\/p>\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 project that involves both external and internal aspects, starting from the simplification and acceleration of front-end resources, relying on a stable configuration of the server and back-end environment, benefiting from the wise selection of plugins and themes, and ultimately maintaining optimal performance through advanced distribution networks and continuous monitoring. By following these twenty core tips and systematically implementing optimization strategies, you can not only significantly improve the speed and performance of your website but also enhance the user experience and boost its SEO competitiveness, laying a solid technical foundation for the long-term success of your website.<\/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 to do if the website speed has not improved significantly after optimization?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">First, use tools such as Google PageSpeed Insights or WebPageTest to perform a \u201cwaterfall analysis\u201d to accurately identify the resources that load the slowest or those that are causing bottlenecks in the loading process. The bottleneck often lies in unoptimized third-party scripts (such as advertising code or analytics scripts), slow server response times (TTFB \u2013 Time To First Byte), or resources that block the rendering process. Take appropriate measures to address these specific issues, such as loading third-party JavaScript asynchronously, upgrading server configurations, or optimizing the database.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How many caching plugins are considered appropriate to use?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In principle, one cache plugin is sufficient. Installing multiple cache plugins with overlapping functions (such as W3 Total Cache and WP Super Cache) can lead to rule conflicts, prevent the cache from being generated correctly, and may even slow down the website or cause errors. Choosing a cache plugin with comprehensive features and a good reputation, and configuring all its options properly (page caching, browser caching, database caching, object caching, etc.), is far more effective than installing multiple plugins.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to determine whether a theme or plugin is efficient<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Before installing, check the theme\u2019s update log, user reviews, and its rating in the WordPress official repository. After installation, you can use the Query Monitor plugin to monitor its performance: see how many database queries it generates, how many CSS\/JS files it loads, and whether any unnecessary resources are being loaded in the background (for example, in the dashboard). Lightweight themes and plugins generally adhere to WordPress\u2019s coding standards and undergo regular performance optimizations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How often should database optimization be performed?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For websites with frequent content updates (such as those publishing multiple articles daily), it is recommended to perform a regular database cleanup once a month, which includes removing revised versions, automatic drafts, and spam comments. For websites with less frequent updates, a cleanup once every quarter is sufficient. Before performing any major optimization tasks (such as repairing database tables), make sure to back up the entire database to prevent data loss.<\/p>","protected":false},"excerpt":{"rendered":"<p>This article systematically introduces 20 core techniques for optimizing the speed and performance of WordPress websites. The content covers front-end image compression and lazy loading, cache configuration, code merging, as well as back-end in-depth optimization strategies such as server selection, database cleaning, object caching, and plugin and theme streamlining, aiming to comprehensively improve the loading efficiency of the website.<\/p>","protected":false},"author":7,"featured_media":0,"template":"","meta":{"_acf_changed":false,"footnotes":""},"tags":[400,517,402,502,401],"knowledge_category":[280],"class_list":["post-12391856","knowledge_post","type-knowledge_post","status-publish","hentry","tag-wordpress-optimization","tag-image-compression","tag-performance-improvement","tag-cache-mechanism","tag-website-speed","knowledge_category-wordpress"],"acf":{"site_seo_keywords":"WordPress\u4f18\u5316,\u7f51\u7ad9\u901f\u5ea6,\u6027\u80fd\u63d0\u5347,\u56fe\u7247\u538b\u7f29,\u7f13\u5b58\u673a\u5236,\u6570\u636e\u5e93\u6e05\u7406,\u63d2\u4ef6\u7cbe\u7b80"},"_links":{"self":[{"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_posts\/12391856","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\/12391856\/revisions"}],"predecessor-version":[{"id":12404124,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_posts\/12391856\/revisions\/12404124"}],"wp:attachment":[{"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/media?parent=12391856"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/tags?post=12391856"},{"taxonomy":"knowledge_category","embeddable":true,"href":"https:\/\/www.likacloud.com\/en\/wp-json\/wp\/v2\/knowledge_category?post=12391856"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}