{"id":135689,"date":"2023-06-19T13:38:25","date_gmt":"2023-06-19T13:38:25","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=135689"},"modified":"2024-07-12T07:02:06","modified_gmt":"2024-07-12T07:02:06","slug":"how-to-add-custom-screen-option-in-woocommerce","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/","title":{"rendered":"How to Add Custom Screen Option in WooCommerce?"},"content":{"rendered":"\n<p>WooCommerce is a popular e-commerce platform that allows you to create and manage online stores with ease. <\/p>\n\n\n\n<p>While WooCommerce offers a range of customization options out of the box, there may be times when you need to extend its functionality further.<\/p>\n\n\n\n<p>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\">&nbsp;hire WooCommerce Developers<\/a>&nbsp;for your project.<\/p>\n\n\n\n<p>One such customization is adding a screen option to the WooCommerce admin pages, which gives users more control over their experience. In this tutorial, we will guide you through the process of adding a screen option to WooCommerce using code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Create a Custom Function<\/h3>\n\n\n\n<p>To begin, we&#8217;ll create a custom function that adds the desired screen option to the WooCommerce admin pages. Open your theme&#8217;s <code>functions.php<\/code> file or create a custom plugin file to keep the modifications separate. Add the following code to the file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">function wk_add_custom_screen_option() {\n    $args = array(\n        &#039;label&#039; =&gt; &#039;Custom Option&#039;,\n        &#039;default&#039; =&gt; 10,\n        &#039;option&#039; =&gt; &#039;custom_option&#039;\n    );\n\n    add_screen_option(&#039;per_page&#039;, $args);\n}\nadd_action(&#039;admin_head&#039;, &#039;wk_add_custom_screen_option&#039;);<\/pre>\n\n\n\n<p>In the code above, we define a function called wk_<code>add_custom_screen_option<\/code>. Within this function, we create an array of arguments to configure the screen option. The <code>'label'<\/code> key determines the text displayed for the option in the Screen Options menu. <\/p>\n\n\n\n<p>The <code>'default'<\/code> key sets the initial value of the option, and the <code>'option'<\/code> key specifies the name of the option to be saved.<\/p>\n\n\n\n<p>The <code>add_screen_option<\/code> function is then used to add the screen option to the <code>per_page<\/code> section.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Modify the WooCommerce Admin Page<\/h3>\n\n\n\n<p>Now that we have our custom function in place, we can modify the WooCommerce admin page where we want to add the screen option. For example, let&#8217;s say we want to add the screen option to the product listing page.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Log in to your WordPress admin dashboard.<\/li>\n\n\n\n<li>Navigate to the &#8220;Products&#8221; menu and click on &#8220;All Products&#8221;.<\/li>\n\n\n\n<li>On the product listing page, locate the &#8220;Screen Options&#8221; tab in the top right corner.<\/li>\n\n\n\n<li>Click on the &#8220;Screen Options&#8221; tab to reveal the options panel.<\/li>\n\n\n\n<li>You should now see a checkbox labeled &#8220;Custom Option&#8221; (or the label you defined in the code).<\/li>\n\n\n\n<li>Check the checkbox to enable the screen option.<\/li>\n<\/ol>\n\n\n\n<p>Once the screen option is enabled, you&#8217;ll notice a new input field where you can specify a value. This value will be saved and used within the WooCommerce admin page.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Save the Screen Option Value<\/h3>\n\n\n\n<p>To ensure that the screen option value is saved and can be utilized in your code, we need to add a filter hook. Add the following code to your <code>functions.php<\/code> file or custom plugin file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">function wk_save_custom_screen_option($status, $option, $value) {\n    if ($option === &#039;custom_option&#039;) {\n        update_option(&#039;custom_option_value&#039;, $value);\n    }\n    return $status;\n}\nadd_filter(&#039;set-screen-option&#039;, &#039;wk_save_custom_screen_option&#039;, 10, 3);<\/pre>\n\n\n\n<p>In the code snippet above, we define a function named wk_<code>save_custom_screen_option<\/code> as the filter callback. This function checks if the option name matches &#8216;custom_option&#8217; (the same as defined in the previous step) and saves the value to the WordPress options table using the <code>update_option<\/code> function. <\/p>\n\n\n\n<p>You can modify this logic to suit your specific needs.<\/p>\n\n\n\n<p>Now we&#8217;ll see how the screen options will look on the page we created. Please check below &#8211;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" width=\"1115\" height=\"290\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png\" alt=\"custom-option\" class=\"wp-image-385895\" style=\"width:820px;height:213px\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png 1115w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option-300x78.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option-250x65.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option-768x200.png 768w\" sizes=\"(max-width: 1115px) 100vw, 1115px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Support<\/h2>\n\n\n\n<p>For any technical assistance kindly <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noreferrer noopener\">raise&nbsp;a ticket<\/a>&nbsp;or&nbsp;reach&nbsp;us by email at&nbsp;support@webkul.com. 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\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugins<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WooCommerce is a popular e-commerce platform that allows you to create and manage online stores with ease. While WooCommerce offers a range of customization options out of the box, there may be times when you need to extend its functionality further. If you require expert assistance or want to develop custom unique functionality,&nbsp;hire WooCommerce Developers&nbsp;for <a href=\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/\">[&#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":[14375,1468,14374],"class_list":["post-135689","post","type-post","status-publish","format-standard","hentry","category-woocommerce","category-wordpress","tag-screen-option","tag-woocommerce","tag-woocommerce-screen-option"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add custom screen option in woocommerce<\/title>\n<meta name=\"description\" content=\"How to add a custom screen option: Learn how to add a screen option in WooCommerce to enhance user experience and provide more flexibility.\" \/>\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-add-custom-screen-option-in-woocommerce\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add custom screen option in woocommerce\" \/>\n<meta property=\"og:description\" content=\"How to add a custom screen option: Learn how to add a screen option in WooCommerce to enhance user experience and provide more flexibility.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/\" \/>\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-06-19T13:38:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-12T07:02:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.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=\"3 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-add-custom-screen-option-in-woocommerce\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/\"},\"author\":{\"name\":\"Er. Shakir Husain\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/cff292dde21ecd12ec1566e175dd2de6\"},\"headline\":\"How to Add Custom Screen Option in WooCommerce?\",\"datePublished\":\"2023-06-19T13:38:25+00:00\",\"dateModified\":\"2024-07-12T07:02:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/\"},\"wordCount\":533,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png\",\"keywords\":[\"Screen Option\",\"WooCommerce\",\"WooCommerce Screen Option\"],\"articleSection\":[\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/\",\"name\":\"How to add custom screen option in woocommerce\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png\",\"datePublished\":\"2023-06-19T13:38:25+00:00\",\"dateModified\":\"2024-07-12T07:02:06+00:00\",\"description\":\"How to add a custom screen option: Learn how to add a screen option in WooCommerce to enhance user experience and provide more flexibility.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png\",\"width\":1115,\"height\":290,\"caption\":\"custom-option\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Add Custom Screen Option in WooCommerce?\"}]},{\"@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 add custom screen option in woocommerce","description":"How to add a custom screen option: Learn how to add a screen option in WooCommerce to enhance user experience and provide more flexibility.","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-add-custom-screen-option-in-woocommerce\/","og_locale":"en_US","og_type":"article","og_title":"How to add custom screen option in woocommerce","og_description":"How to add a custom screen option: Learn how to add a screen option in WooCommerce to enhance user experience and provide more flexibility.","og_url":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-06-19T13:38:25+00:00","article_modified_time":"2024-07-12T07:02:06+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/"},"author":{"name":"Er. Shakir Husain","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/cff292dde21ecd12ec1566e175dd2de6"},"headline":"How to Add Custom Screen Option in WooCommerce?","datePublished":"2023-06-19T13:38:25+00:00","dateModified":"2024-07-12T07:02:06+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/"},"wordCount":533,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png","keywords":["Screen Option","WooCommerce","WooCommerce Screen Option"],"articleSection":["WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/","url":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/","name":"How to add custom screen option in woocommerce","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png","datePublished":"2023-06-19T13:38:25+00:00","dateModified":"2024-07-12T07:02:06+00:00","description":"How to add a custom screen option: Learn how to add a screen option in WooCommerce to enhance user experience and provide more flexibility.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/custom-option.png","width":1115,"height":290,"caption":"custom-option"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-screen-option-in-woocommerce\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Add Custom Screen Option in WooCommerce?"}]},{"@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\/135689","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=135689"}],"version-history":[{"count":39,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/135689\/revisions"}],"predecessor-version":[{"id":452502,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/135689\/revisions\/452502"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=135689"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=135689"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=135689"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}