{"id":495642,"date":"2025-06-11T11:43:51","date_gmt":"2025-06-11T11:43:51","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=495642"},"modified":"2025-06-18T04:35:09","modified_gmt":"2025-06-18T04:35:09","slug":"how-to-enable-wordpress-full-page-caching","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/","title":{"rendered":"How to Enable WordPress Full Page Caching"},"content":{"rendered":"\n<p>If you&#8217;re running a WordPress site and want <a href=\"https:\/\/webkul.com\/wordpress-speed-optimization-services\/\">website faster performance<\/a> but don\u2019t want to use plugins, this guide is for you.<\/p>\n\n\n\n<p>We will show you how to enable full page caching using <code>define('WP_CACHE', true);<\/code> and a few lines of code. No plugins, no bloat\u2014just clean and simple optimization.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"660\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-1200x660.webp\" alt=\"full-page-cache-wordpress\" class=\"wp-image-496480\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-1200x660.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-300x165.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-250x138.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-768x422.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-1536x845.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching.webp 1600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">What Does <code>define('WP_CACHE', true);<\/code> Do?<\/h3>\n\n\n\n<p>This line tells WordPress to enable caching support. It looks for a file called <code>advanced-cache.php<\/code> in the <code>wp-content\/<\/code> directory.<\/p>\n\n\n\n<p>If it finds that file, it will try to serve cached content before loading the entire WordPress engine.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why WordPress Won\u2019t Cache Automatically<\/h3>\n\n\n\n<p>Adding <code>WP_CACHE<\/code> does not cache your site by itself. You need to create the logic to store and serve cached files. Normally, plugins handle this. But you can do it yourself with a few lines of code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Create Your Cache File<\/h3>\n\n\n\n<p>Inside <code>wp-content\/<\/code>, create a file called <code>advanced-cache.php<\/code>. Paste the following code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;?php\n$cache_key = md5($_SERVER['REQUEST_URI']);\n$cache_file = __DIR__ . '\/cache\/' . $cache_key . '.html';\n\nif (file_exists($cache_file) &amp;&amp; (filemtime($cache_file) > (time() - 3600))) {\n    readfile($cache_file);\n    exit;\n}\n\nob_start();<\/pre>\n\n\n\n<p>This code checks if a cached file exists and is fresh. If yes, it serves it and skips WordPress.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Save Output to Cache<\/h3>\n\n\n\n<p>At the end of your <code>footer.php<\/code> file or right after <code>wp_footer()<\/code>, add:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;?php\nif (defined('WP_CACHE') &amp;&amp; WP_CACHE) {\n    $cache_key = md5($_SERVER['REQUEST_URI']);\n    $cache_file = WP_CONTENT_DIR . '\/cache\/' . $cache_key . '.html';\n    file_put_contents($cache_file, ob_get_contents());\n}\nob_end_flush();\n?><\/pre>\n\n\n\n<p>This saves the full page as an HTML file so it can be loaded next time without running WordPress.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Create the Cache Directory<\/h3>\n\n\n\n<p>In most cases, the <code>cache<\/code> folder inside <code>wp-content\/<\/code> needs to be created manually, but your theme or server environment auto-generates it.<\/p>\n\n\n\n<p>Make a folder inside <code>wp-content\/<\/code> named <code>cache<\/code>. Give it write permissions (usually 755 or 775).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Set Cache Rules<\/h3>\n\n\n\n<p>To avoid caching for logged-in users or specific pages, you can extend the logic. For example:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">if (is_user_logged_in()) return;\n<\/pre>\n\n\n\n<p>This helps avoid issues with user-specific content like carts or dashboards.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Test Your Cache<\/h3>\n\n\n\n<p>Open your site in incognito mode. View the source and refresh twice. You should see faster load times on repeat visits.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Bonus Tips (Without Plugins)<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <code>.htaccess<\/code> to add browser cache headers.<\/li>\n\n\n\n<li>Enable gzip compression via server or <code>.htaccess<\/code>.<\/li>\n\n\n\n<li>Optimize images manually or use WebP.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Final Thoughts<\/h3>\n\n\n\n<p>This method works great for blogs, landing pages, or simple business sites. If your site is dynamic consider Redis or a smart invalidation system.<\/p>\n\n\n\n<p>With just a few lines of code, your WordPress site can be faster\u2014no plugin needed!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong><strong>Reference<\/strong><\/strong>:<\/h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-wordpress-developer-resources wp-block-embed-wordpress-developer-resources\"><div class=\"wp-block-embed__wrapper\">\nhttps:\/\/developer.wordpress.org\/reference\/classes\/wp_object_cache\/\n<\/div><\/figure>\n<\/blockquote>\n\n\n\n<p><\/p>\n\n\n\n<p>We provide a wide range of <a href=\"https:\/\/webkul.com\/wordpress-speed-optimization-services\/\">WordPress Speed Optimization Services<\/a>. Feel free to&nbsp;<a href=\"https:\/\/webkul.com\/contacts\" target=\"_blank\" rel=\"noreferrer noopener\">reach us<\/a>&nbsp;and also explore our exclusive range of WordPress&nbsp;<a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\">WooCommerce Plugins<\/a>.<\/p>\n\n\n\n<p>!!Have a Great Day Ahead!!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re running a WordPress site and want website faster performance but don\u2019t want to use plugins, this guide is for you. We will show you how to enable full page caching using define(&#8216;WP_CACHE&#8217;, true); and a few lines of code. No plugins, no bloat\u2014just clean and simple optimization. What Does define(&#8216;WP_CACHE&#8217;, true); Do? This <a href=\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":349,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1773,1260],"tags":[14267],"class_list":["post-495642","post","type-post","status-publish","format-standard","hentry","category-woocommerce","category-wordpress","tag-full-page-caching"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Enable WordPress Full Page Caching<\/title>\n<meta name=\"description\" content=\"If you\u2019re running a WordPress site and want faster performance but don\u2019t want to use plugins, this guide is for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable WordPress Full Page Caching\" \/>\n<meta property=\"og:description\" content=\"If you\u2019re running a WordPress site and want faster performance but don\u2019t want to use plugins, this guide is for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-11T11:43:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-18T04:35:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-1200x660.webp\" \/>\n<meta name=\"author\" content=\"Anikesh Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anikesh Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/\"},\"author\":{\"name\":\"Anikesh Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/4da1b58c2629234761688a8028e1d454\"},\"headline\":\"How to Enable WordPress Full Page Caching\",\"datePublished\":\"2025-06-11T11:43:51+00:00\",\"dateModified\":\"2025-06-18T04:35:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/\"},\"wordCount\":401,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-1200x660.webp\",\"keywords\":[\"Full Page Caching\"],\"articleSection\":[\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/\",\"name\":\"How to Enable WordPress Full Page Caching\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-1200x660.webp\",\"datePublished\":\"2025-06-11T11:43:51+00:00\",\"dateModified\":\"2025-06-18T04:35:09+00:00\",\"description\":\"If you\u2019re running a WordPress site and want faster performance but don\u2019t want to use plugins, this guide is for you.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching.webp\",\"width\":1600,\"height\":880},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable WordPress Full Page Caching\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/4da1b58c2629234761688a8028e1d454\",\"name\":\"Anikesh Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ee2f1a94eaa8f8ff5ce21477883023b57f58a71189b92d6cd9aa40d9e19ac60d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ee2f1a94eaa8f8ff5ce21477883023b57f58a71189b92d6cd9aa40d9e19ac60d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Anikesh Kumar\"},\"description\":\"Anikesh Kumar- Team Lead, excels in WooCommerce integration, Payment Gateway Integration, and Speed Optimization Services. His proficiency in advanced WooCommerce modules and tools ensures seamless payment method development, delivering optimized, high-performance eCommerce solutions tailored to client needs.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/anikesh-kumar204\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Enable WordPress Full Page Caching","description":"If you\u2019re running a WordPress site and want faster performance but don\u2019t want to use plugins, this guide is for you.","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:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable WordPress Full Page Caching","og_description":"If you\u2019re running a WordPress site and want faster performance but don\u2019t want to use plugins, this guide is for you.","og_url":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2025-06-11T11:43:51+00:00","article_modified_time":"2025-06-18T04:35:09+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-1200x660.webp","type":"","width":"","height":""}],"author":"Anikesh Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Anikesh Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/"},"author":{"name":"Anikesh Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/4da1b58c2629234761688a8028e1d454"},"headline":"How to Enable WordPress Full Page Caching","datePublished":"2025-06-11T11:43:51+00:00","dateModified":"2025-06-18T04:35:09+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/"},"wordCount":401,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-1200x660.webp","keywords":["Full Page Caching"],"articleSection":["WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/","url":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/","name":"How to Enable WordPress Full Page Caching","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching-1200x660.webp","datePublished":"2025-06-11T11:43:51+00:00","dateModified":"2025-06-18T04:35:09+00:00","description":"If you\u2019re running a WordPress site and want faster performance but don\u2019t want to use plugins, this guide is for you.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/06\/how-to-enable-wordpress-full-page-caching.webp","width":1600,"height":880},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-enable-wordpress-full-page-caching\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable WordPress Full Page Caching"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/4da1b58c2629234761688a8028e1d454","name":"Anikesh Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ee2f1a94eaa8f8ff5ce21477883023b57f58a71189b92d6cd9aa40d9e19ac60d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ee2f1a94eaa8f8ff5ce21477883023b57f58a71189b92d6cd9aa40d9e19ac60d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Anikesh Kumar"},"description":"Anikesh Kumar- Team Lead, excels in WooCommerce integration, Payment Gateway Integration, and Speed Optimization Services. His proficiency in advanced WooCommerce modules and tools ensures seamless payment method development, delivering optimized, high-performance eCommerce solutions tailored to client needs.","url":"https:\/\/webkul.com\/blog\/author\/anikesh-kumar204\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/495642","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/349"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=495642"}],"version-history":[{"count":15,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/495642\/revisions"}],"predecessor-version":[{"id":496481,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/495642\/revisions\/496481"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=495642"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=495642"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=495642"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}