{"id":3315,"date":"2022-07-20T12:14:38","date_gmt":"2022-07-20T12:14:38","guid":{"rendered":"https:\/\/www.cynoinfotech.com\/?p=3315"},"modified":"2022-07-20T13:07:42","modified_gmt":"2022-07-20T13:07:42","slug":"how-to-create-basic-module-in-magento-2","status":"publish","type":"post","link":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/","title":{"rendered":"How to create Basic Module in Magento 2"},"content":{"rendered":"<p>[vc_row][vc_column][vc_column_text css=&#8221;.vc_custom_1658320170972{margin-bottom: 0px !important;}&#8221;]Here, you can learn basic module in Magento 2, when you learn Magento 2 you need to learn <strong>Hello World<\/strong> basic module step by step and it&#8217;s mandatory.<\/p>\n<p>Let&#8217;s start with different things to create a custom module in Magento 2:<\/p>\n<p>First of all you need to set developer mode. So, check status for deploy mode it&#8217;s default, developer or production using below command line.<\/p>\n<pre class=\"toolbar:1 lang:default decode:true \">php bin\/magento deploy:mode:status<\/pre>\n<p>If you see the default or production mode in your result then you can switch to developer mode using below command line:<\/p>\n<pre class=\"toolbar:1 lang:default decode:true \">php bin\/magento deploy:mode:set developer<\/pre>\n<p>Now, you need to create <strong>Module Setup<\/strong> as per the following:<\/p>\n<ol>\n<li>Create Folder: <em>app\/code\/VendorName\/Helloworld<\/em><br \/>\n&#8211; Here <em>VendorName<\/em> is module namespace and <em>Helloworld<\/em> is module&#8217;s name.<\/li>\n<li>Create <em>module.xml<\/em> file in <em>app\/code\/VendorName\/Helloworld\/etc<\/em> folder with the following code.\n<pre class=\"toolbar:1 lang:default decode:true \">&lt;?xml version=\"1.0\"?&gt;\r\n&lt;config xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\r\nxsi:noNamespaceSchemaLocation=\"urn:magento:framework:Module\/etc\/module.xsd\"&gt;\r\n     &lt;module name=\"VendorName_Helloworld\" setup_version=\"1.0.0\"&gt;&lt;\/module&gt;\r\n&lt;\/config&gt;<\/pre>\n<\/li>\n<li>Create <em>registration.php<\/em> file in <em>app\/code\/VendorName\/Helloworld<\/em> folder to register the module with the following code.\n<pre class=\"toolbar:1 lang:default decode:true\">&lt;?php\r\n\r\n\\Magento\\Framework\\Component\\ComponentRegistrar::register(\r\n    \\Magento\\Framework\\Component\\ComponentRegistrar::MODULE,\r\n    'VendorName_Helloworld',\r\n    __DIR__\r\n);<\/pre>\n<\/li>\n<li>Now, open your terminal and run the following command in your Magento root folder.\n<pre class=\"toolbar:1 lang:default decode:true\">php bin\/magento setup:upgrade<\/pre>\n<\/li>\n<li>Make sure your module is installed or not with the following command and check your module with enable\/disable list.\n<pre class=\"toolbar:1 lang:default decode:true\">php bin\/magento module:status<\/pre>\n<p>Or you can also check <em>VendorName_Helloworld<\/em> with value <strong>1<\/strong> in <em>app\/etc\/config.php<\/em> file.<\/li>\n<\/ol>\n<p>Create the controller with the following step:<\/p>\n<ol>\n<li>Define the route with <em>routes.xml<\/em> file in <em>app\/code\/VendorName\/Helloworld\/etc\/frontend<\/em> folder with the following code:\n<pre class=\"toolbar:1 lang:default decode:true\">&lt;?xml version=\"1.0\"?&gt;\r\n&lt;config xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\r\n    xsi:noNamespaceSchemaLocation=\"urn:magento:framework:App\/etc\/routes.xsd\"&gt;\r\n    &lt;router id=\"standard\"&gt;\r\n        &lt;route id=\"helloworld\" frontName=\"helloworld\"&gt;\r\n            &lt;module name=\"VendorName_Helloworld\" \/&gt;\r\n        &lt;\/route&gt;\r\n    &lt;\/router&gt;\r\n&lt;\/config&gt;<\/pre>\n<p>Here, define the frontend router with frontName helloworld. frontName attribute as part of URL.<\/p>\n<ul>\n<li>In Magento 2 URL&#8217;s is:\n<pre class=\"toolbar:1 lang:default decode:true \">&lt;frontName&gt;\/&lt;controller_name&gt;\/&lt;controller_class_name&gt;<\/pre>\n<p>&nbsp;<\/li>\n<\/ul>\n<\/li>\n<li>Create <em>index.php<\/em> file in <em>app\/code\/VendorName\/Helloworld\/Controller\/Index<\/em> folder with the following code:\n<pre class=\"toolbar:1 lang:default decode:true \">&lt;?php\r\n\r\nnamespace VendorName\\Helloworld\\Controller\\Index;\r\n\r\nuse Magento\\Framework\\App\\Action\\Context;\r\nuse Magento\\Framework\\App\\Action\\Action;\r\nuse Magento\\Framework\\View\\Result\\PageFactory;\r\n\r\nclass Index extends Action\r\n{\r\n    protected $_resultPageFactory;\r\n\r\n    public function __construct(\r\n        Context $context,\r\n        PageFactory $resultPageFactory\r\n    ) {\r\n        $this-&gt;_resultPageFactory = $resultPageFactory;\r\n        parent::__construct($context);\r\n    }\r\n\r\n    public function execute()\r\n    {\r\n        $resultPage = $this-&gt;_resultPageFactory-&gt;create();\r\n        return $resultPage;\r\n    }\r\n}<\/pre>\n<p>In Magento 2 every action has own class which implements the <em>execute()<\/em> method.<\/li>\n<\/ol>\n<p>Create the block with the following code:<\/p>\n<ol>\n<li>Create <em>Helloworld.php<\/em> block file in the <em>app\/code\/VendorName\/Helloworld\/Block<\/em> folder with the following code:\n<pre class=\"toolbar:1 lang:default decode:true\">&lt;?php\r\nnamespace VendorName\\Helloworld\\Block;\r\n\r\nuse Magento\\Framework\\View\\Element\\Template;\r\n\r\nclass Helloworld extends Template\r\n{\r\n    public function getHelloWorld()\r\n    {\r\n        return 'Hello World!';\r\n    }\r\n}<\/pre>\n<\/li>\n<\/ol>\n<p>Create the layout and template file with the following step:<\/p>\n<ol>\n<li>Here, three subfolders inside the <em>view(app\/code\/VendorName\/Helloworld\/view)<\/em> folder: <em>adminhtml, base and frontend<\/em>.\n<ul>\n<li>Create helloworld_index_index.xml file in the app\/code\/VendorName\/Helloworld\/view\/frontend\/layout folder with the following code:\n<pre class=\"toolbar:1 lang:default decode:true\">&lt;page xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" layout=\"1column\"\r\n    xsi:noNamespaceSchemaLocation=\"urn:magento:framework:View\/Layout\/etc\/page_configuration.xsd\"&gt;\r\n    &lt;body&gt;\r\n        &lt;referenceContainer name=\"content\"&gt;\r\n            &lt;block class=\"VendorName\\Helloworld\\Block\\Helloworld\" name=\"helloworld\" template=\"helloworld.phtml\" \/&gt;\r\n        &lt;\/referenceContainer&gt;\r\n    &lt;\/body&gt;\r\n&lt;\/page&gt;<\/pre>\n<p>Our controller handle is <em>helloworld_index_index<\/em>. You may create the layout configuration file for every layout handle.<\/li>\n<li>Create helloworld.phtml file in the app\/code\/VendorName\/Helloworld\/view\/frontend\/templates folder with the following code:\n<pre class=\"toolbar:1 lang:default decode:true\">&lt;h1&gt;&lt;?= $block-&gt;getHelloWorld(); ?&gt;&lt;\/h1&gt;<\/pre>\n<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<p>Run the Magento Upgrade and cache clean command as per following:<\/p>\n<pre class=\"toolbar:1 lang:default decode:true \">php bin\/magento setup:upgrade\r\nphp bin\/magento cache:clean<\/pre>\n<p>Now, open the URL <strong>yourdomain\/helloworld\/index\/index<\/strong> in your browser and you should get something like this:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"1278\" height=\"340\" class=\"alignnone size-medium wp-image-3321\" src=\"https:\/\/www.cynoinfotech.com\/wp-content\/uploads\/2022\/07\/hello_world.png\" alt=\"\" srcset=\"https:\/\/cynoinfotech.com\/blog\/wp-content\/uploads\/2022\/07\/hello_world.png 1278w, https:\/\/cynoinfotech.com\/blog\/wp-content\/uploads\/2022\/07\/hello_world-300x80.png 300w, https:\/\/cynoinfotech.com\/blog\/wp-content\/uploads\/2022\/07\/hello_world-1024x272.png 1024w, https:\/\/cynoinfotech.com\/blog\/wp-content\/uploads\/2022\/07\/hello_world-768x204.png 768w, https:\/\/cynoinfotech.com\/blog\/wp-content\/uploads\/2022\/07\/hello_world-400x106.png 400w\" sizes=\"auto, (max-width: 1278px) 100vw, 1278px\" \/><\/p>\n<p>We hope our technical blog which looking is very helpful for you. If you have any queries, feel free to leave a comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_column_text css=&#8221;.vc_custom_1658320170972{margin-bottom: 0px !important;}&#8221;]Here, you can learn basic module in Magento 2, when you learn Magento 2 you need to learn Hello World basic module step by step and it&#8217;s mandatory. Let&#8217;s start with different things to create a custom module in Magento 2: First of all you need to set developer mode. So, check [&hellip;]<\/p>\n","protected":false},"author":270,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-3315","post","type-post","status-publish","format-standard","hentry","category-magento-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to create Basic Module in Magento 2 - cynoinfotech<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/\"},\"author\":{\"name\":\"Payal Patel\",\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/#\\\/schema\\\/person\\\/d60abb6a6e9a42b790821bb0f2e6d92e\"},\"headline\":\"How to create Basic Module in Magento 2\",\"datePublished\":\"2022-07-20T12:14:38+00:00\",\"dateModified\":\"2022-07-20T13:07:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/\"},\"wordCount\":451,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cynoinfotech.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/hello_world.png\",\"articleSection\":[\"Magento blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/\",\"url\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/\",\"name\":\"How to create Basic Module in Magento 2 - cynoinfotech\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cynoinfotech.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/hello_world.png\",\"datePublished\":\"2022-07-20T12:14:38+00:00\",\"dateModified\":\"2022-07-20T13:07:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.cynoinfotech.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/hello_world.png\",\"contentUrl\":\"https:\\\/\\\/www.cynoinfotech.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/hello_world.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/how-to-create-basic-module-in-magento-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create Basic Module in Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/\",\"name\":\"cynoinfotech\",\"description\":\"web design &amp; development\",\"publisher\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/#organization\",\"name\":\"Cynoinfotech\",\"url\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.cynoinfotech.com\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/final-logo-ci.png\",\"contentUrl\":\"https:\\\/\\\/www.cynoinfotech.com\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/final-logo-ci.png\",\"width\":240,\"height\":70,\"caption\":\"Cynoinfotech\"},\"image\":{\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/cynoinfotech\\\/\",\"https:\\\/\\\/x.com\\\/cynoinfotech\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/#\\\/schema\\\/person\\\/d60abb6a6e9a42b790821bb0f2e6d92e\",\"name\":\"Payal Patel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/50363130ecc9094fa930ca04cf1a31f712dc885f4c4e807a0a2fe2fb3ba14674?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/50363130ecc9094fa930ca04cf1a31f712dc885f4c4e807a0a2fe2fb3ba14674?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/50363130ecc9094fa930ca04cf1a31f712dc885f4c4e807a0a2fe2fb3ba14674?s=96&d=mm&r=g\",\"caption\":\"Payal Patel\"},\"description\":\"Payal is Sr. Magento2 Full Stack Developer who writes clean code and follows best practices. She is always ready for learning new things.\",\"url\":\"https:\\\/\\\/cynoinfotech.com\\\/blog\\\/author\\\/pr-patel4819\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create Basic Module in Magento 2 - cynoinfotech","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:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/"},"author":{"name":"Payal Patel","@id":"https:\/\/cynoinfotech.com\/blog\/#\/schema\/person\/d60abb6a6e9a42b790821bb0f2e6d92e"},"headline":"How to create Basic Module in Magento 2","datePublished":"2022-07-20T12:14:38+00:00","dateModified":"2022-07-20T13:07:42+00:00","mainEntityOfPage":{"@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/"},"wordCount":451,"commentCount":0,"publisher":{"@id":"https:\/\/cynoinfotech.com\/blog\/#organization"},"image":{"@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cynoinfotech.com\/wp-content\/uploads\/2022\/07\/hello_world.png","articleSection":["Magento blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/","url":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/","name":"How to create Basic Module in Magento 2 - cynoinfotech","isPartOf":{"@id":"https:\/\/cynoinfotech.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cynoinfotech.com\/wp-content\/uploads\/2022\/07\/hello_world.png","datePublished":"2022-07-20T12:14:38+00:00","dateModified":"2022-07-20T13:07:42+00:00","breadcrumb":{"@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/#primaryimage","url":"https:\/\/www.cynoinfotech.com\/wp-content\/uploads\/2022\/07\/hello_world.png","contentUrl":"https:\/\/www.cynoinfotech.com\/wp-content\/uploads\/2022\/07\/hello_world.png"},{"@type":"BreadcrumbList","@id":"https:\/\/cynoinfotech.com\/blog\/how-to-create-basic-module-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cynoinfotech.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create Basic Module in Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/cynoinfotech.com\/blog\/#website","url":"https:\/\/cynoinfotech.com\/blog\/","name":"cynoinfotech","description":"web design &amp; development","publisher":{"@id":"https:\/\/cynoinfotech.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cynoinfotech.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cynoinfotech.com\/blog\/#organization","name":"Cynoinfotech","url":"https:\/\/cynoinfotech.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cynoinfotech.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.cynoinfotech.com\/wp-content\/uploads\/2017\/11\/final-logo-ci.png","contentUrl":"https:\/\/www.cynoinfotech.com\/wp-content\/uploads\/2017\/11\/final-logo-ci.png","width":240,"height":70,"caption":"Cynoinfotech"},"image":{"@id":"https:\/\/cynoinfotech.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/cynoinfotech\/","https:\/\/x.com\/cynoinfotech"]},{"@type":"Person","@id":"https:\/\/cynoinfotech.com\/blog\/#\/schema\/person\/d60abb6a6e9a42b790821bb0f2e6d92e","name":"Payal Patel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/50363130ecc9094fa930ca04cf1a31f712dc885f4c4e807a0a2fe2fb3ba14674?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/50363130ecc9094fa930ca04cf1a31f712dc885f4c4e807a0a2fe2fb3ba14674?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/50363130ecc9094fa930ca04cf1a31f712dc885f4c4e807a0a2fe2fb3ba14674?s=96&d=mm&r=g","caption":"Payal Patel"},"description":"Payal is Sr. Magento2 Full Stack Developer who writes clean code and follows best practices. She is always ready for learning new things.","url":"https:\/\/cynoinfotech.com\/blog\/author\/pr-patel4819\/"}]}},"_links":{"self":[{"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/posts\/3315","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/users\/270"}],"replies":[{"embeddable":true,"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/comments?post=3315"}],"version-history":[{"count":6,"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/posts\/3315\/revisions"}],"predecessor-version":[{"id":3319,"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/posts\/3315\/revisions\/3319"}],"wp:attachment":[{"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/media?parent=3315"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/categories?post=3315"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cynoinfotech.com\/blog\/wp-json\/wp\/v2\/tags?post=3315"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}