{"id":408521,"date":"2023-11-01T07:24:48","date_gmt":"2023-11-01T07:24:48","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=408521"},"modified":"2025-04-29T11:22:32","modified_gmt":"2025-04-29T11:22:32","slug":"woocommerce-plugin-high-performance-order-storage-compatible","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/","title":{"rendered":"How to Make WooCommerce Plugin High Performance Order Storage Compatible?"},"content":{"rendered":"\n<p><a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugin<\/a> HPOS (High-performance order storage) involves optimizing how orders are stored and managed within the WooCommerce database to ensure efficient and speedy operations.<\/p>\n\n\n\n<p>We are implementing High-performance order storage compatibility on our popular plugins like&nbsp;<a href=\"https:\/\/store.webkul.com\/woocommerce-multivendor-marketplace.html\">WooCommerce Marketplace<\/a>&nbsp;and&nbsp;<a href=\"https:\/\/store.webkul.com\/woocommerce-point-of-sale.html\">WooCommerce POS<\/a>.<\/p>\n\n\n\n<p>WooCommerce is a popular e-commerce platform for WordPress, and as the store grows, it&#8217;s important to maintain the performance of order processing and storage.<\/p>\n\n\n\n<p>We&#8217;ll delve into the strategies and best practices for achieving high-performance order storage in WooCommerce.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Optimize Your Database<\/strong><\/h2>\n\n\n\n<p>WooCommerce relies heavily on your WordPress database for storing order data. To ensure high performance, it&#8217;s essential to keep your database in top shape. <\/p>\n\n\n\n<p>Regularly perform tasks like cleaning up unnecessary data, removing unused tables, and optimizing database queries. <\/p>\n\n\n\n<p>You can use <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce extensions<\/a> specifically designed for database optimization or seek the assistance of a developer experienced with WooCommerce.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Utilize Efficient Hosting<\/strong><\/h2>\n\n\n\n<p>Your choice of hosting provider has a profound impact on your store&#8217;s performance. Ensure your hosting plan offers sufficient server resources to handle your order volume and web traffic. <\/p>\n\n\n\n<p>If possible, opt for a hosting solution optimized for WooCommerce. The right hosting environment can make a world of difference.<\/p>\n\n\n\n<p>Explore a wide range of <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins\/AWS-Cloud.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce hosting services<\/a> to set up, migrate, and optimize your online store on AWS (Amazon Web Services) and other cloud platforms.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Effective Indexing<\/strong><\/h2>\n\n\n\n<p>Properly indexing the database tables related to orders can drastically improve the speed of database queries. <\/p>\n\n\n\n<p>Indexing essentially creates a roadmap for the database to locate information quickly. <\/p>\n\n\n\n<p>If you&#8217;re not comfortable with database management, it&#8217;s best to consult with a developer to set up effective indexing for your <a href=\"https:\/\/store.webkul.com\/woocommerce-pre-order.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce orders<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Limit Custom Fields<\/strong><\/h2>\n\n\n\n<p>While custom fields in WooCommerce orders can be useful for capturing specific data, they can also slow down order storage and retrieval. <\/p>\n\n\n\n<p>To maintain high performance, only use custom fields when absolutely necessary.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Steps to make compatibility with WooCommerce plugin HPOS:<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Declare the compatibility with WooCommerce plugin HPOS-<\/h3>\n\n\n\n<p>Added the following code in your plugin main file to declare compatibility-<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\nadd_action(&#039;before_woocommerce_init&#039;, function(){\n\n    if ( class_exists( \\Automattic\\WooCommerce\\Utilities\\FeaturesUtil::class ) ) {\n        \\Automattic\\WooCommerce\\Utilities\\FeaturesUtil::declare_compatibility( &#039;custom_order_tables&#039;, __FILE__, true );\n\n    }\n\n});<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Functions for getting\/setting order &amp; order meta<\/h3>\n\n\n\n<p>Any code getting orders from the get_posts  directly can be converted to a&nbsp;<code>wc_get_order<\/code>&nbsp;call instead:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/\/ Instead of\n$order = get_post( $order_id ); \/\/ returns WP_Post object.\n\/\/ use\n$order = wc_get_order( $order_id ); \/\/ returns WC_Order object.<\/pre>\n\n\n\n<p>For interacting with metadata, use the&nbsp;<code>update_meta_data<\/code>,  <code>add_meta_data<\/code> and delete_meta_data&nbsp;methods on the order object, followed by a&nbsp;save&nbsp;call. <\/p>\n\n\n\n<p>WooCommerce will take care of figuring out which tables are active and saving data in appropriate locations.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/\/ Instead of following update\/add\/delete methods, use:\nupdate_post_meta( $post_id, $meta_key_1, $meta_value_1 );\nadd_post_meta( $post_id, $meta_key_2, $meta_value_2 );\ndelete_post_meta( $post_id, $meta_key_3, $meta_value_3 );\nget_post_meta( $post_id, $meta_key_4, true);\n\/\/ use\n$order = wc_get_order( $post_id );\n$order-&gt;update_meta_data( $meta_key_1, $meta_value_1 );\n$order-&gt;add_meta_data( $meta_key_2, $meta_value_2 );\n$order-&gt;delete_meta_data( $meta_key_3, $meta_value_3 );\n$order-&gt;get_meta( $meta_key_4, true );\n$order-&gt;save();<\/pre>\n\n\n\n<p>Calling the&nbsp;<code>save()<\/code>&nbsp;method is a relatively expensive operation, so you may wish to avoid calling it more times than necessary.<\/p>\n\n\n\n<p>(For example, if you know it will be called later in the same flow, you may wish to avoid additional earlier calls when operating on the same object).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Check if the post is a WooCommerce order<\/h2>\n\n\n\n<p>You can check if the post is a WooCommerce order by the following code &#8211; <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">if ( ! function_exists( &#039;wkwc_is_wc_order&#039; ) ) {\n\t\/**\n\t * Check is post WooCommerce order.\n\t *\n\t * @param int $post_id Post id.\n\t *\n\t * @return bool $bool True|false.\n\t *\/\n\tfunction wkwc_is_wc_order( $post_id = 0 ) {\n\t\t$bool = false;\n\t\tif ( &#039;shop_order&#039; === OrderUtil::get_order_type( $post_id ) ) {\n\t\t\t$bool = true;\n\t\t}\n\n\t\treturn $bool;\n\t}\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion-caching-in-woocommerce-addons\">Conclusion<\/h2>\n\n\n\n<p>How to make WooCommerce plugin High-performance order storage compatible<\/p>\n\n\n\n<p>That\u2019s all about the implementation of the WooCommerce plugin HPOS ( High-performance order storage ) feature in your  WooCommerce plugins.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>WooCommerce plugin HPOS (High-performance order storage) involves optimizing how orders are stored and managed within the WooCommerce database to ensure efficient and speedy operations. We are implementing High-performance order storage compatibility on our popular plugins like&nbsp;WooCommerce Marketplace&nbsp;and&nbsp;WooCommerce POS. WooCommerce is a popular e-commerce platform for WordPress, and as the store grows, it&#8217;s important to maintain <a href=\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":514,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1773,7966,1260],"tags":[15038,15047,6236,1468,15037],"class_list":["post-408521","post","type-post","status-publish","format-standard","hentry","category-woocommerce","category-wordpress-woocommerce","category-wordpress","tag-high-performance-order-storage","tag-hpos","tag-orders","tag-woocommerce","tag-woocommerce-hpos"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Make WooCommerce Plugin HPOS Compatible?<\/title>\n<meta name=\"description\" content=\"WooCommerce plugin HPOS ( High-performance order storage ) involves optimizing how orders are stored and managed in the database.\" \/>\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\/woocommerce-plugin-high-performance-order-storage-compatible\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Make WooCommerce Plugin HPOS Compatible?\" \/>\n<meta property=\"og:description\" content=\"WooCommerce plugin HPOS ( High-performance order storage ) involves optimizing how orders are stored and managed in the database.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/\" \/>\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=\"2023-11-01T07:24:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-29T11:22:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ajeet 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=\"Ajeet Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/\"},\"author\":{\"name\":\"Ajeet Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f808ce65cf4b6793c84e4194fcbb50a\"},\"headline\":\"How to Make WooCommerce Plugin High Performance Order Storage Compatible?\",\"datePublished\":\"2023-11-01T07:24:48+00:00\",\"dateModified\":\"2025-04-29T11:22:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/\"},\"wordCount\":518,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"High-performance order storage\",\"hpos\",\"orders\",\"WooCommerce\",\"WooCommerce HPOS\"],\"articleSection\":[\"WooCommerce\",\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/\",\"url\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/\",\"name\":\"How to Make WooCommerce Plugin HPOS Compatible?\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2023-11-01T07:24:48+00:00\",\"dateModified\":\"2025-04-29T11:22:32+00:00\",\"description\":\"WooCommerce plugin HPOS ( High-performance order storage ) involves optimizing how orders are stored and managed in the database.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Make WooCommerce Plugin High Performance Order Storage Compatible?\"}]},{\"@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\/5f808ce65cf4b6793c84e4194fcbb50a\",\"name\":\"Ajeet Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b53b8b6a4395f59f9d903094cded9b2544da27386e70990e16b993e658c17f4b?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\/b53b8b6a4395f59f9d903094cded9b2544da27386e70990e16b993e658c17f4b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ajeet Kumar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/ajeetkumar-wp300\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Make WooCommerce Plugin HPOS Compatible?","description":"WooCommerce plugin HPOS ( High-performance order storage ) involves optimizing how orders are stored and managed in the database.","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\/woocommerce-plugin-high-performance-order-storage-compatible\/","og_locale":"en_US","og_type":"article","og_title":"How to Make WooCommerce Plugin HPOS Compatible?","og_description":"WooCommerce plugin HPOS ( High-performance order storage ) involves optimizing how orders are stored and managed in the database.","og_url":"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-11-01T07:24:48+00:00","article_modified_time":"2025-04-29T11:22:32+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Ajeet Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ajeet Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/"},"author":{"name":"Ajeet Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f808ce65cf4b6793c84e4194fcbb50a"},"headline":"How to Make WooCommerce Plugin High Performance Order Storage Compatible?","datePublished":"2023-11-01T07:24:48+00:00","dateModified":"2025-04-29T11:22:32+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/"},"wordCount":518,"commentCount":2,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["High-performance order storage","hpos","orders","WooCommerce","WooCommerce HPOS"],"articleSection":["WooCommerce","WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/","url":"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/","name":"How to Make WooCommerce Plugin HPOS Compatible?","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2023-11-01T07:24:48+00:00","dateModified":"2025-04-29T11:22:32+00:00","description":"WooCommerce plugin HPOS ( High-performance order storage ) involves optimizing how orders are stored and managed in the database.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-high-performance-order-storage-compatible\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Make WooCommerce Plugin High Performance Order Storage Compatible?"}]},{"@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\/5f808ce65cf4b6793c84e4194fcbb50a","name":"Ajeet Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b53b8b6a4395f59f9d903094cded9b2544da27386e70990e16b993e658c17f4b?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\/b53b8b6a4395f59f9d903094cded9b2544da27386e70990e16b993e658c17f4b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ajeet Kumar"},"url":"https:\/\/webkul.com\/blog\/author\/ajeetkumar-wp300\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/408521","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\/514"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=408521"}],"version-history":[{"count":28,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/408521\/revisions"}],"predecessor-version":[{"id":490442,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/408521\/revisions\/490442"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=408521"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=408521"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=408521"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}