{"id":404866,"date":"2023-10-26T13:17:44","date_gmt":"2023-10-26T13:17:44","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=404866"},"modified":"2023-11-02T06:17:13","modified_gmt":"2023-11-02T06:17:13","slug":"woocommerce-product-reviews-ratings-programmatically","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/","title":{"rendered":"How to Create Product Reviews and Ratings in WooCommerce Programmatically?"},"content":{"rendered":"\n<p>In this blog post, we will explore how to create product reviews and ratings programmatically in WooCommerce using code.<\/p>\n\n\n\n<p>Product reviews and ratings are a critical component of any successful e-commerce platform. They help customers make informed purchasing decisions and build trust in your products. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"869\" height=\"533\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png\" alt=\"image-263\" class=\"wp-image-407872\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png 869w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263-300x184.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263-250x153.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263-768x471.png 768w\" sizes=\"(max-width: 869px) 100vw, 869px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>WooCommerce, a powerful e-commerce plugin for WordPress, offers built-in support for product reviews and ratings. <\/p>\n\n\n\n<p>However, there are situations where you may need to programmatically create product reviews and ratings.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites:<\/h2>\n\n\n\n<p>Before we dive into the code, ensure you have the following prerequisites:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>WordPress and WooCommerce are installed and activated on your website.<\/li>\n\n\n\n<li>A basic understanding of PHP, WordPress, and WooCommerce.<\/li>\n\n\n\n<li>Access to your website&#8217;s code, typically in the theme&#8217;s <code>functions.php<\/code> file or in a custom plugin.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Create a Product Review Programmatically<\/h2>\n\n\n\n<p>First, we need to create a product review programmatically. This can be achieved by adding the following code to your theme&#8217;s <code>functions.php<\/code> file or a custom <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugin<\/a>:<\/p>\n\n\n\n<p>In this code, we define the review data, including the product ID, author, content, and approval status. <\/p>\n\n\n\n<p>Adjust the values to match your specific review. The <code>wp_insert_comment()<\/code> function inserts the review into the database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Set the Review&#8217;s Rating Programmatically<\/h2>\n\n\n\n<p>To set the review&#8217;s rating programmatically, you&#8217;ll need to work with custom fields since WooCommerce stores ratings as custom fields associated with reviews. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Add the following code:<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\">function wk_set_review_rating_programmatically() {\n\t$product_id = 29; \/\/ Replace with the product ID\n\t\t\/\/ Define review data\n\t\t$review_data = array(\n\t\t\t&#039;comment_post_ID&#039;  =&gt; $product_id, \/\/ Replace with the product ID you want to review\n\t\t\t&#039;comment_author&#039;   =&gt; &#039;John Doe 1&#039;,\n\t\t\t&#039;comment_content&#039;  =&gt; &#039;This product is amazing!&#039;,\n\t\t\t&#039;comment_approved&#039; =&gt; 1, \/\/ 1 for approved, 0 for pending\n\t\t\t&#039;user_id&#039;          =&gt; 1, \/\/ Replace with the user ID who is leaving the review\n\t\t);\n\t\t$rating      = 5; \/\/ Replace with the desired rating (1 to 5)\n\t\t\/\/ Insert the review\n\t\t$review_id = wp_insert_comment( $review_data );\n\t\tupdate_comment_meta( $review_id, &#039;rating&#039;, $rating );\n}\nadd_action( &#039;init&#039;, &#039;wk_set_review_rating_programmatically&#039; );<\/pre>\n\n\n\n<p>This code sets the rating for the review programmatically by updating the custom field &#8216;rating&#8217; associated with the review. <\/p>\n\n\n\n<p>It also updates the product&#8217;s rating count and average rating to reflect the new review.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Display Custom Reviews and Ratings<\/h2>\n\n\n\n<p>To display custom reviews and ratings on your product pages, you can modify your theme&#8217;s template files. <\/p>\n\n\n\n<p>Here&#8217;s an example of how you can display custom reviews:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$product_id = get_the_ID();\n$reviews = get_comments(array(&#039;post_id&#039; =&gt; $product_id));\nforeach ($reviews as $review) {\n    $rating = get_comment_meta($review-&gt;comment_ID, &#039;rating&#039;, true);\n    $author = $review-&gt;comment_author;\n    $content = $review-&gt;comment_content;\n    \n    echo &quot;Rating: &quot; . esc_html($rating) . &quot;&lt;br&gt;&quot;;\n    echo &quot;Author: &quot; . esc_html($author) . &quot;&lt;br&gt;&quot;;\n    echo &quot;Review: &quot; . esc_html($content) . &quot;&lt;br&gt;&lt;br&gt;&quot;;\n}<\/pre>\n\n\n\n<p>In this code, we retrieve the product&#8217;s reviews and display the ratings, author names, and review content.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Creating product reviews and ratings programmatically in WooCommerce can be a valuable addition to your e-commerce site. It allows you to customize and automate the review process. <\/p>\n\n\n\n<p>By following the steps and code snippets provided in this blog, you can programmatically generate reviews and ratings that help build trust and influence purchasing decisions for your products.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Support<\/h2>\n\n\n\n<p id=\"block-b0799902-2263-4573-a1d9-9a337ef4fdd0\">If you need any technical assistance, please reach us by mail at&nbsp;support@webkul.com<\/p>\n\n\n\n<p id=\"block-b0799902-2263-4573-a1d9-9a337ef4fdd0\">Additionally, if you require expert assistance or want to develop custom unique functionality <a href=\"https:\/\/webkul.com\/hire-woocommerce-developers\/\" target=\"_blank\" rel=\"noreferrer noopener\">Hire WooCommerce Developers<\/a> for your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we will explore how to create product reviews and ratings programmatically in WooCommerce using code. Product reviews and ratings are a critical component of any successful e-commerce platform. They help customers make informed purchasing decisions and build trust in your products. WooCommerce, a powerful e-commerce plugin for WordPress, offers built-in support <a href=\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":509,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1773,1260],"tags":[14910,4540,14912,14909],"class_list":["post-404866","post","type-post","status-publish","format-standard","hentry","category-woocommerce","category-wordpress","tag-rating","tag-reviews","tag-woocommerce-ratings","tag-woocommerce-review"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WooCommerce Product Reviews Ratings Programmatically<\/title>\n<meta name=\"description\" content=\"Learn how to create WooCommerce product reviews and ratings programmatically using custom theme code and custom plugin.\" \/>\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-product-reviews-ratings-programmatically\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WooCommerce Product Reviews Ratings Programmatically\" \/>\n<meta property=\"og:description\" content=\"Learn how to create WooCommerce product reviews and ratings programmatically using custom theme code and custom plugin.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/\" \/>\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-10-26T13:17:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-02T06:17:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png\" \/>\n<meta name=\"author\" content=\"Er. Shakir Husain\" \/>\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=\"Er. Shakir Husain\" \/>\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\/woocommerce-product-reviews-ratings-programmatically\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/\"},\"author\":{\"name\":\"Er. Shakir Husain\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/cff292dde21ecd12ec1566e175dd2de6\"},\"headline\":\"How to Create Product Reviews and Ratings in WooCommerce Programmatically?\",\"datePublished\":\"2023-10-26T13:17:44+00:00\",\"dateModified\":\"2023-11-02T06:17:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/\"},\"wordCount\":407,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png\",\"keywords\":[\"Rating\",\"reviews\",\"WooCommerce Ratings\",\"WooCommerce Review\"],\"articleSection\":[\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/\",\"url\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/\",\"name\":\"WooCommerce Product Reviews Ratings Programmatically\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png\",\"datePublished\":\"2023-10-26T13:17:44+00:00\",\"dateModified\":\"2023-11-02T06:17:13+00:00\",\"description\":\"Learn how to create WooCommerce product reviews and ratings programmatically using custom theme code and custom plugin.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png\",\"width\":869,\"height\":533,\"caption\":\"image-263\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create Product Reviews and Ratings in WooCommerce Programmatically?\"}]},{\"@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\/cff292dde21ecd12ec1566e175dd2de6\",\"name\":\"Er. Shakir Husain\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/23a8112353e77f8889dd56a0bd6435c229cde4d472a4b064c9209f78b81f22e7?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\/23a8112353e77f8889dd56a0bd6435c229cde4d472a4b064c9209f78b81f22e7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Er. Shakir Husain\"},\"description\":\"Shakir Hussain, a WordPress wizard, specializes in MySQL, Marketplace REST APIs, WooCommerce Migration, and Development. His skills in e-commerce solutions and connectors with eBay and Shopify drive tailored seamless business growth.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/shakir-hussain421\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WooCommerce Product Reviews Ratings Programmatically","description":"Learn how to create WooCommerce product reviews and ratings programmatically using custom theme code and custom plugin.","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-product-reviews-ratings-programmatically\/","og_locale":"en_US","og_type":"article","og_title":"WooCommerce Product Reviews Ratings Programmatically","og_description":"Learn how to create WooCommerce product reviews and ratings programmatically using custom theme code and custom plugin.","og_url":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-10-26T13:17:44+00:00","article_modified_time":"2023-11-02T06:17:13+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png","type":"","width":"","height":""}],"author":"Er. Shakir Husain","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Er. Shakir Husain","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/"},"author":{"name":"Er. Shakir Husain","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/cff292dde21ecd12ec1566e175dd2de6"},"headline":"How to Create Product Reviews and Ratings in WooCommerce Programmatically?","datePublished":"2023-10-26T13:17:44+00:00","dateModified":"2023-11-02T06:17:13+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/"},"wordCount":407,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png","keywords":["Rating","reviews","WooCommerce Ratings","WooCommerce Review"],"articleSection":["WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/","url":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/","name":"WooCommerce Product Reviews Ratings Programmatically","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png","datePublished":"2023-10-26T13:17:44+00:00","dateModified":"2023-11-02T06:17:13+00:00","description":"Learn how to create WooCommerce product reviews and ratings programmatically using custom theme code and custom plugin.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/image-263.png","width":869,"height":533,"caption":"image-263"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/woocommerce-product-reviews-ratings-programmatically\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Create Product Reviews and Ratings in WooCommerce Programmatically?"}]},{"@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\/cff292dde21ecd12ec1566e175dd2de6","name":"Er. Shakir Husain","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/23a8112353e77f8889dd56a0bd6435c229cde4d472a4b064c9209f78b81f22e7?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\/23a8112353e77f8889dd56a0bd6435c229cde4d472a4b064c9209f78b81f22e7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Er. Shakir Husain"},"description":"Shakir Hussain, a WordPress wizard, specializes in MySQL, Marketplace REST APIs, WooCommerce Migration, and Development. His skills in e-commerce solutions and connectors with eBay and Shopify drive tailored seamless business growth.","url":"https:\/\/webkul.com\/blog\/author\/shakir-hussain421\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/404866","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\/509"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=404866"}],"version-history":[{"count":33,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/404866\/revisions"}],"predecessor-version":[{"id":408947,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/404866\/revisions\/408947"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=404866"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=404866"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=404866"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}