{"id":390468,"date":"2023-07-24T04:46:55","date_gmt":"2023-07-24T04:46:55","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=390468"},"modified":"2024-04-08T12:05:08","modified_gmt":"2024-04-08T12:05:08","slug":"how-to-create-custom-user-in-woocommerce-programmatically","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/","title":{"rendered":"How to create a custom user in WooCommerce programmatically?"},"content":{"rendered":"\n<p>WooCommerce is a popular e-commerce platform built on WordPress. It provides a flexible and customizable framework for building online stores. <\/p>\n\n\n\n<p>In some cases, you may need to programmatically create custom user accounts in WooCommerce, either as part of an integration or to automate user registration. <\/p>\n\n\n\n<p>In this tutorial, we will guide you through the process of creating a custom user in WooCommerce programmatically using code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>To follow along with this tutorial, you should have a basic understanding of WordPress and PHP programming. Additionally, you&#8217;ll need a working WordPress installation with WooCommerce already set up.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Setting up the Code Environment<\/h3>\n\n\n\n<p>Before we begin, make sure you have access to your WordPress installation&#8217;s codebase. You can use a code editor of your choice to modify the necessary files.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Create a New User Programmatically<\/h3>\n\n\n\n<p> To create a custom user in WooCommerce programmatically, we will use WordPress&#8217;s user registration functions in combination with WooCommerce&#8217;s user meta functions. Open the file where you want to add this functionality, such as your theme&#8217;s <code>functions.php<\/code> file or a custom plugin file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">function wk_create_custom_user() {\n\/\/ Define user details.\n$username = &#039;custom_username&#039;;\n$email    = &#039;custom_email@example.com&#039;;\n$password = &#039;custom_password&#039;;\n\/\/ Create WordPress user.\n$user_id = wp_create_user( $username, $password, $email );\n\nif ( ! is_wp_error( $user_id ) ) {\n\/\/ Set user role.\n$user = new WP_User( $user_id );\n$user-&gt;set_role( &#039;customer&#039; );\n\/\/ Add WooCommerce specific user meta.\nupdate_user_meta( $user_id, &#039;first_name&#039;, &#039;custom_username&#039; );\nupdate_user_meta( $user_id, &#039;billing_phone&#039;, &#039;123456789&#039; );\nupdate_user_meta( $user_id, &#039;shipping_country&#039;, &#039;US&#039; );\n\n\/\/ Redirect or perform additional actions\n\/\/ ...\n     echo &#039;Custom user created successfully!&#039;;\n  } else {\n     echo &#039;Failed to create custom user.&#039;;\n  }\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Execute the Function<\/h3>\n\n\n\n<p>After adding the wk_<code>create_custom_user()<\/code> function, you need to trigger its execution. You can do this by hooking the function to an appropriate WordPress action or by calling it directly. For example, you can add the following line to your code to execute the function when a specific action occurs:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">add_action(&#039;init&#039;, &#039;wk_create_custom_user&#039;);<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Customize the User Details<\/h3>\n\n\n\n<p> In the wk_<code>create_custom_user()<\/code> function, you can modify the variables <code>$username<\/code>, <code>$email<\/code>, and <code>$password<\/code> to suit your requirements. Additionally, you can use the <code>update_user_meta()<\/code> function to add or modify any WooCommerce-specific user metadata.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1117\" height=\"375\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png\" alt=\"create user in woocommerce\" class=\"wp-image-392369\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png 1117w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user-300x101.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user-250x84.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user-768x258.png 768w\" sizes=\"(max-width: 1117px) 100vw, 1117px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Creating custom users programmatically in WooCommerce allows you to automate user registration or integrate with external systems. By following the steps outlined in this tutorial, you should now have a better understanding of how to create custom users in WooCommerce using code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Support<\/h2>\n\n\n\n<p>For any technical assistance,&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\">please raise<\/a>&nbsp;a ticket or&nbsp;<a href=\"https:\/\/webkul.com\/contacts\/\">reach<\/a>&nbsp;us by email at&nbsp;<a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>. Thanks for Your Time! Have a Good Day!<\/p>\n\n\n\n<p>Also, discover various solutions to add more features and enhance your online store by visiting the&nbsp;<a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\">WooCommerce plugins page<\/a>. Additionally, if you require expert assistance or want to develop custom unique functionality,<a href=\"https:\/\/webkul.com\/hire-woocommerce-developers\/\">&nbsp;Hire WooCommerce Developers<\/a>&nbsp;for your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WooCommerce is a popular e-commerce platform built on WordPress. It provides a flexible and customizable framework for building online stores. In some cases, you may need to programmatically create custom user accounts in WooCommerce, either as part of an integration or to automate user registration. In this tutorial, we will guide you through the process <a href=\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-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":[14539,14540,1468],"class_list":["post-390468","post","type-post","status-publish","format-standard","hentry","category-woocommerce","category-wordpress","tag-create-custom-user","tag-user-create","tag-woocommerce"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Create Custom User in WooCommerce Programmatically?<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will guide you through the process to create custom user in WooCommerce programmatically using code.\" \/>\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-create-custom-user-in-woocommerce-programmatically\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create Custom User in WooCommerce Programmatically?\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will guide you through the process to create custom user in WooCommerce programmatically using code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-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-07-24T04:46:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-08T12:05:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.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\/how-to-create-custom-user-in-woocommerce-programmatically\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/\"},\"author\":{\"name\":\"Er. Shakir Husain\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/cff292dde21ecd12ec1566e175dd2de6\"},\"headline\":\"How to create a custom user in WooCommerce programmatically?\",\"datePublished\":\"2023-07-24T04:46:55+00:00\",\"dateModified\":\"2024-04-08T12:05:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/\"},\"wordCount\":386,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png\",\"keywords\":[\"Create Custom User\",\"User Create\",\"WooCommerce\"],\"articleSection\":[\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/\",\"name\":\"How to Create Custom User in WooCommerce Programmatically?\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png\",\"datePublished\":\"2023-07-24T04:46:55+00:00\",\"dateModified\":\"2024-04-08T12:05:08+00:00\",\"description\":\"In this tutorial, we will guide you through the process to create custom user in WooCommerce programmatically using code.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png\",\"width\":1117,\"height\":375,\"caption\":\"user\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create a custom user 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":"How to Create Custom User in WooCommerce Programmatically?","description":"In this tutorial, we will guide you through the process to create custom user in WooCommerce programmatically using code.","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-create-custom-user-in-woocommerce-programmatically\/","og_locale":"en_US","og_type":"article","og_title":"How to Create Custom User in WooCommerce Programmatically?","og_description":"In this tutorial, we will guide you through the process to create custom user in WooCommerce programmatically using code.","og_url":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-07-24T04:46:55+00:00","article_modified_time":"2024-04-08T12:05:08+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.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\/how-to-create-custom-user-in-woocommerce-programmatically\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/"},"author":{"name":"Er. Shakir Husain","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/cff292dde21ecd12ec1566e175dd2de6"},"headline":"How to create a custom user in WooCommerce programmatically?","datePublished":"2023-07-24T04:46:55+00:00","dateModified":"2024-04-08T12:05:08+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/"},"wordCount":386,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png","keywords":["Create Custom User","User Create","WooCommerce"],"articleSection":["WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/","url":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/","name":"How to Create Custom User in WooCommerce Programmatically?","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png","datePublished":"2023-07-24T04:46:55+00:00","dateModified":"2024-04-08T12:05:08+00:00","description":"In this tutorial, we will guide you through the process to create custom user in WooCommerce programmatically using code.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/user.png","width":1117,"height":375,"caption":"user"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-create-custom-user-in-woocommerce-programmatically\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create a custom user 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\/390468","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=390468"}],"version-history":[{"count":13,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/390468\/revisions"}],"predecessor-version":[{"id":432435,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/390468\/revisions\/432435"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=390468"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=390468"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=390468"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}