{"id":405140,"date":"2023-11-27T13:30:43","date_gmt":"2023-11-27T13:30:43","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=405140"},"modified":"2025-04-29T11:56:26","modified_gmt":"2025-04-29T11:56:26","slug":"woocommerce-plugin-common-issues","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/","title":{"rendered":"How to Troubleshoot Common Issues in WooCommerce Plugin?"},"content":{"rendered":"\n<p>Today, we are going to learn how to troubleshoot common issues in <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugin<\/a> development involves.<\/p>\n\n\n\n<p>We can follow a systematic approach to identifying and resolving problems. Here are some steps we can follow:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Check for Errors and Logs<\/h2>\n\n\n\n<p>This is going to be our first step for starting development in the WooCommerce plugin.<\/p>\n\n\n\n<p>Enable debugging in WordPress by adding the following lines to your `wp-config.php`<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">define( &#039;WP_DEBUG&#039;, true );\ndefine( &#039;WP_DEBUG_LOG&#039;, true );\ndefine( &#039;WP_DEBUG_DISPLAY&#039;, true );\ndefine( &#039;SCRIPT_DEBUG&#039;, true );<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Verify Plugin Activation<\/h2>\n\n\n\n<p>Ensure that your plugin is activated and properly configured in the WordPress admin panel in the plugin menu.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Check for Conflicts<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Deactivate other plugins one by one to see if the issue persists. This can help identify conflicts with other plugins.<\/li>\n\n\n\n<li>Switch to a default WordPress theme (like Twenty Twenty-One) temporarily to check if the issue is related to your theme.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Inspect JavaScript and CSS Files<\/h2>\n\n\n\n<p>Check for syntax errors or incorrect file paths in your plugin&#8217;s JavaScript and CSS files.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Test in Different<\/strong> <strong>Environments<\/strong><\/h2>\n\n\n\n<p>Some issues may be specific to certain server configurations. <\/p>\n\n\n\n<p>You can test your plugin on a different server rather than your local environment.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Test in Different Browsers<\/h2>\n\n\n\n<p>Some issues may be specific to certain Browsers. Test your plugin on a different Browser like Chrome\/Mozilla\/ Safari etc.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Handle Exception Handling<\/h2>\n\n\n\n<p>Exception handling is used to change the normal flow of the code execution if a specified error (exceptional) condition occurs.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\/\/create function with an exception\nfunction checkNum($number) {\n  if($number&gt;1) {\n    throw new Exception(&quot;Value must be 1 or below&quot;);\n  }\n  return true;\n}\n\n\/\/trigger exception\ncheckNum(2);\n?&gt;<\/pre>\n\n\n\n<p>The code above will get an error like this:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Fatal error<\/strong>: Uncaught exception &#8216;Exception&#8217;<br>with message &#8216;Value must be 1 or below&#8217; in C:\\webfolder\\test.php:6<br>Stack trace: #0 C:\\webfolder\\test.php(12):<br>checkNum(28) #1 {main} thrown in&nbsp;<strong>C:\\webfolder\\test.php<\/strong>&nbsp;on line&nbsp;<strong>6<\/strong><\/p>\n<\/blockquote>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\/\/create function with an exception\nfunction checkNum($number) {\n  if($number&gt;1) {\n    throw new Exception(&quot;Value must be 1 or below&quot;);\n  }\n  return true;\n}\n\n\/\/trigger exception in a &quot;try&quot; block\ntry {\n  checkNum(2);\n  \/\/If the exception is thrown, this text will not be shown\n  echo &#039;If you see this, the number is 1 or below&#039;;\n}\n\n\/\/catch exception\ncatch(Exception $e) {\n  echo &#039;Message: &#039; .$e-&gt;getMessage();\n}\n?&gt;<\/pre>\n\n\n\n<p>You may also check <a href=\"https:\/\/webkul.com\/blog\/custom-registration-form-fields-in-woocommerce\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Add Custom Registration Form Fields in WooCommerce<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">WooCommerce Plugin Debugging Tools<\/h2>\n\n\n\n<p>How to troubleshoot common issues using a few debugging tools.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use Var_dump() and Error_log():<\/strong> Add <code>var_dump(), print_r()<\/code> and <code>error_log()<\/code> statements at critical points in your code to inspect variables and trace program flow.<\/li>\n\n\n\n<li><strong>Check for API Key and URL Issues<\/strong>: If your plugin interacts with external services or APIs, ensure that API keys, URLs, and authentication details are correct.<\/li>\n\n\n\n<li><strong>Stay Updated with Documentation<\/strong>: Refer to WooCommerce and <a href=\"https:\/\/store.webkul.com\/Wordpress-Knowledgebase.html\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress documentation<\/a> regularly to ensure you&#8217;re using the latest recommended practices.<\/li>\n\n\n\n<li><strong>Backup Before Making Changes<\/strong>: Before making significant changes to your plugin code, always back up your files and database.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">WooCommerce Plugin Support<\/h2>\n\n\n\n<p>That&#8217;s all for the WooCommerce plugin common issues post. For any technical help, please reach us at&nbsp;support@webkul.com, also <a href=\"https:\/\/webkul.com\/hire-woocommerce-developers\/\" target=\"_blank\" rel=\"noreferrer noopener\">hire WooCommerce developers<\/a> for your next project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today, we are going to learn how to troubleshoot common issues in WooCommerce plugin development involves. We can follow a systematic approach to identifying and resolving problems. Here are some steps we can follow: Check for Errors and Logs This is going to be our first step for starting development in the WooCommerce plugin. Enable <a href=\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":340,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1773,1260],"tags":[],"class_list":["post-405140","post","type-post","status-publish","format-standard","hentry","category-woocommerce","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Troubleshoot Common Issues in WooCommerce Plugin?<\/title>\n<meta name=\"description\" content=\"Learn how to troubleshoot WooCommerce plugin common issues and challenges in development with expert tips and techniques.\" \/>\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-common-issues\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Troubleshoot Common Issues in WooCommerce Plugin?\" \/>\n<meta property=\"og:description\" content=\"Learn how to troubleshoot WooCommerce plugin common issues and challenges in development with expert tips and techniques.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/\" \/>\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-27T13:30:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-29T11:56:26+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=\"Himanshu 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=\"Himanshu 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\/woocommerce-plugin-common-issues\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/\"},\"author\":{\"name\":\"Himanshu Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/6952f25eb0d1843071cf1334ea1b07ed\"},\"headline\":\"How to Troubleshoot Common Issues in WooCommerce Plugin?\",\"datePublished\":\"2023-11-27T13:30:43+00:00\",\"dateModified\":\"2025-04-29T11:56:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/\"},\"wordCount\":422,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"articleSection\":[\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/\",\"url\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/\",\"name\":\"How to Troubleshoot Common Issues in WooCommerce Plugin?\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2023-11-27T13:30:43+00:00\",\"dateModified\":\"2025-04-29T11:56:26+00:00\",\"description\":\"Learn how to troubleshoot WooCommerce plugin common issues and challenges in development with expert tips and techniques.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Troubleshoot Common Issues in WooCommerce Plugin?\"}]},{\"@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\/6952f25eb0d1843071cf1334ea1b07ed\",\"name\":\"Himanshu Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b3d19c09b89f420fac0217dbdff8be9b28ce99b04c3a1bce23c0652b5b880c5d?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\/b3d19c09b89f420fac0217dbdff8be9b28ce99b04c3a1bce23c0652b5b880c5d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Himanshu Kumar\"},\"description\":\"Himanshu Kumar, a skilled professional in the WordPress department, specializes in React, React Native, Redux, and WooCommerce API Development. His expertise in PoS App Development, Chat Server integration, and Payment Methods for PoS systems ensures seamless and innovative eCommerce solutions.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/himanshu-kumar731\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Troubleshoot Common Issues in WooCommerce Plugin?","description":"Learn how to troubleshoot WooCommerce plugin common issues and challenges in development with expert tips and techniques.","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-common-issues\/","og_locale":"en_US","og_type":"article","og_title":"How to Troubleshoot Common Issues in WooCommerce Plugin?","og_description":"Learn how to troubleshoot WooCommerce plugin common issues and challenges in development with expert tips and techniques.","og_url":"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-11-27T13:30:43+00:00","article_modified_time":"2025-04-29T11:56:26+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":"Himanshu Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Himanshu Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/"},"author":{"name":"Himanshu Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/6952f25eb0d1843071cf1334ea1b07ed"},"headline":"How to Troubleshoot Common Issues in WooCommerce Plugin?","datePublished":"2023-11-27T13:30:43+00:00","dateModified":"2025-04-29T11:56:26+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/"},"wordCount":422,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"articleSection":["WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/","url":"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/","name":"How to Troubleshoot Common Issues in WooCommerce Plugin?","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2023-11-27T13:30:43+00:00","dateModified":"2025-04-29T11:56:26+00:00","description":"Learn how to troubleshoot WooCommerce plugin common issues and challenges in development with expert tips and techniques.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/woocommerce-plugin-common-issues\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Troubleshoot Common Issues in WooCommerce Plugin?"}]},{"@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\/6952f25eb0d1843071cf1334ea1b07ed","name":"Himanshu Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b3d19c09b89f420fac0217dbdff8be9b28ce99b04c3a1bce23c0652b5b880c5d?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\/b3d19c09b89f420fac0217dbdff8be9b28ce99b04c3a1bce23c0652b5b880c5d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Himanshu Kumar"},"description":"Himanshu Kumar, a skilled professional in the WordPress department, specializes in React, React Native, Redux, and WooCommerce API Development. His expertise in PoS App Development, Chat Server integration, and Payment Methods for PoS systems ensures seamless and innovative eCommerce solutions.","url":"https:\/\/webkul.com\/blog\/author\/himanshu-kumar731\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/405140","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\/340"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=405140"}],"version-history":[{"count":26,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/405140\/revisions"}],"predecessor-version":[{"id":490456,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/405140\/revisions\/490456"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=405140"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=405140"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=405140"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}