{"id":57224,"date":"2023-04-29T14:08:40","date_gmt":"2023-04-29T08:38:40","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=57224"},"modified":"2023-05-04T14:37:45","modified_gmt":"2023-05-04T09:07:45","slug":"step-by-step-guide-to-creating-a-custom-module-in-drupal-9","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/","title":{"rendered":"Step-by-Step Guide to Creating a Custom Module in Drupal 9"},"content":{"rendered":"<ol>\n<li>Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we&#8217;ll use &#8220;custom_module&#8221;.<\/li>\n<li>Create the module folder: Create a folder with the same name as your module in your Drupal installation&#8217;s &#8220;modules&#8221; directory.<\/li>\n<li>Create the module file: In the module folder, create a file with the same name as your module but with the &#8220;.info.yml&#8221; extension. This file is used to define metadata about your module, such as its name, description, dependencies, and version. Here&#8217;s an example &#8220;custom_module.info.yml&#8221; file:<\/li>\n<\/ol>\n<blockquote>\n<pre>name: Custom Module\r\ntype: module\r\ndescription: Implements custom functionality for Drupal 9\r\ncore_version_requirement: ^9<\/pre>\n<\/blockquote>\n<ol start=\"4\">\n<li>Define module functions: Create a file with the same name as your module, but with the &#8220;.module&#8221; extension. This file is where you&#8217;ll define your module&#8217;s functions, hooks, and other custom code. Here&#8217;s an example &#8220;custom_module.module&#8221; file:<\/li>\n<\/ol>\n<blockquote>\n<pre>&lt;?php\r\n\r\nuse Drupal\\Core\\Routing\\RouteMatchInterface;\r\n\r\n\/**\r\n* Implements hook_help().\r\n*\/\r\nfunction custom_module_help($route_name, RouteMatchInterface $route_match) {\r\nswitch ($route_name) {\r\ncase 'help.page.custom_module':\r\n$output = '';\r\n\/\/ Generate output.\r\nreturn $output;\r\n\r\ndefault:\r\nreturn '';\r\n}\r\n}<\/pre>\n<\/blockquote>\n<p>In this example, we&#8217;re implementing hook, &#8220;hook_help()&#8221;<\/p>\n<ol start=\"6\">\n<li>Implement custom functionality: Add functions and hooks to your module file to define the custom functionality you want to implement.<\/li>\n<li>Enable your module: Log in to your Drupal 9\/10 site as an administrator, go to the &#8220;Extend&#8221; page, and enable your module.<\/li>\n<\/ol>\n<p>Once your custom module is enabled, you can test and refine its functionality as needed.<\/p>\n<p>Keep in mind that this is just a basic example, and the specific code and functionality will depend on the nature of your module and the features you want to implement. It&#8217;s also important to follow Drupal coding standards and best practices when developing your module to ensure its stability, maintainability, and compatibility with other modules and Drupal updates.<\/p>\n<div class=\"ap-custom-wrapper\"><\/div><!--ap-custom-wrapper-->","protected":false},"excerpt":{"rendered":"<p>Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we&#8217;ll use &#8220;custom_module&#8221;. Create the module folder: Create a folder with the same name as your module in your Drupal installation&#8217;s &#8220;modules&#8221; directory. Create the module file: In the module folder, create a file with the same [&hellip;]<\/p>\n","protected":false},"author":1368,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":91,"footnotes":""},"categories":[3602],"tags":[4862,5200],"class_list":["post-57224","post","type-post","status-publish","format-standard","hentry","category-drupal","tag-drupal","tag-drupal-module"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we&#039;ll use &quot;custom_module&quot;. Create the module folder: Create a folder with the same name as your module in your Drupal installation&#039;s &quot;modules&quot; directory. Create the module file: In the module folder, create a file with the same\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Rajveer Singh\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Step-by-Step Guide to Creating a Custom Module in Drupal 9 | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we&#039;ll use &quot;custom_module&quot;. Create the module folder: Create a folder with the same name as your module in your Drupal installation&#039;s &quot;modules&quot; directory. Create the module file: In the module folder, create a file with the same\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Step-by-Step Guide to Creating a Custom Module in Drupal 9 | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we&#039;ll use &quot;custom_module&quot;. Create the module folder: Create a folder with the same name as your module in your Drupal installation&#039;s &quot;modules&quot; directory. Create the module file: In the module folder, create a file with the same\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/#article\",\"name\":\"Step-by-Step Guide to Creating a Custom Module in Drupal 9 | TO THE NEW Blog\",\"headline\":\"Step-by-Step Guide to Creating a Custom Module in Drupal 9\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rajveer-singh\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2023-04-29T14:08:40+05:30\",\"dateModified\":\"2023-05-04T14:37:45+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/#webpage\"},\"articleSection\":\"Drupal, Drupal, drupal module\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/drupal\\\/#listItem\",\"name\":\"Drupal\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/drupal\\\/#listItem\",\"position\":2,\"name\":\"Drupal\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/drupal\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/#listItem\",\"name\":\"Step-by-Step Guide to Creating a Custom Module in Drupal 9\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/#listItem\",\"position\":3,\"name\":\"Step-by-Step Guide to Creating a Custom Module in Drupal 9\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/drupal\\\/#listItem\",\"name\":\"Drupal\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rajveer-singh\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rajveer-singh\\\/\",\"name\":\"Rajveer Singh\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/69db7071-beb6-4673-aa20-5c7b9af9de0a_Rajveer-Singh-Profile-Pitcure.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Rajveer Singh\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/\",\"name\":\"Step-by-Step Guide to Creating a Custom Module in Drupal 9 | TO THE NEW Blog\",\"description\":\"Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we'll use \\\"custom_module\\\". Create the module folder: Create a folder with the same name as your module in your Drupal installation's \\\"modules\\\" directory. Create the module file: In the module folder, create a file with the same\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rajveer-singh\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rajveer-singh\\\/#author\"},\"datePublished\":\"2023-04-29T14:08:40+05:30\",\"dateModified\":\"2023-05-04T14:37:45+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Step-by-Step Guide to Creating a Custom Module in Drupal 9 | TO THE NEW Blog","description":"Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we'll use \"custom_module\". Create the module folder: Create a folder with the same name as your module in your Drupal installation's \"modules\" directory. Create the module file: In the module folder, create a file with the same","canonical_url":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/#article","name":"Step-by-Step Guide to Creating a Custom Module in Drupal 9 | TO THE NEW Blog","headline":"Step-by-Step Guide to Creating a Custom Module in Drupal 9","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/rajveer-singh\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2023-04-29T14:08:40+05:30","dateModified":"2023-05-04T14:37:45+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/#webpage"},"articleSection":"Drupal, Drupal, drupal module"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/drupal\/#listItem","name":"Drupal"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/drupal\/#listItem","position":2,"name":"Drupal","item":"https:\/\/2thenew.xyz\/blog\/category\/drupal\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/#listItem","name":"Step-by-Step Guide to Creating a Custom Module in Drupal 9"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/#listItem","position":3,"name":"Step-by-Step Guide to Creating a Custom Module in Drupal 9","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/drupal\/#listItem","name":"Drupal"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/rajveer-singh\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/rajveer-singh\/","name":"Rajveer Singh","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/69db7071-beb6-4673-aa20-5c7b9af9de0a_Rajveer-Singh-Profile-Pitcure.jpeg","width":96,"height":96,"caption":"Rajveer Singh"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/","name":"Step-by-Step Guide to Creating a Custom Module in Drupal 9 | TO THE NEW Blog","description":"Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we'll use \"custom_module\". Create the module folder: Create a folder with the same name as your module in your Drupal installation's \"modules\" directory. Create the module file: In the module folder, create a file with the same","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/rajveer-singh\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/rajveer-singh\/#author"},"datePublished":"2023-04-29T14:08:40+05:30","dateModified":"2023-05-04T14:37:45+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Step-by-Step Guide to Creating a Custom Module in Drupal 9 | TO THE NEW Blog","og:description":"Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we'll use &quot;custom_module&quot;. Create the module folder: Create a folder with the same name as your module in your Drupal installation's &quot;modules&quot; directory. Create the module file: In the module folder, create a file with the same","og:url":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Step-by-Step Guide to Creating a Custom Module in Drupal 9 | TO THE NEW Blog","twitter:description":"Choose a module name: Choose a unique name for your module that reflects its purpose. For this example, we'll use &quot;custom_module&quot;. Create the module folder: Create a folder with the same name as your module in your Drupal installation's &quot;modules&quot; directory. Create the module file: In the module folder, create a file with the same","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"57224","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-65e03dd70b628","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"created":"2023-05-04 08:38:40","updated":"2024-02-29 08:18:31","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/drupal\/\" title=\"Drupal\">Drupal<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tStep-by-Step Guide to Creating a Custom Module in Drupal 9\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Drupal","link":"https:\/\/2thenew.xyz\/blog\/category\/drupal\/"},{"label":"Step-by-Step Guide to Creating a Custom Module in Drupal 9","link":"https:\/\/2thenew.xyz\/blog\/step-by-step-guide-to-creating-a-custom-module-in-drupal-9\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/57224","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/1368"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=57224"}],"version-history":[{"count":3,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/57224\/revisions"}],"predecessor-version":[{"id":57330,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/57224\/revisions\/57330"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=57224"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=57224"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=57224"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}