{"id":137939,"date":"2018-08-10T15:29:38","date_gmt":"2018-08-10T15:29:38","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=137939"},"modified":"2023-09-18T10:29:18","modified_gmt":"2023-09-18T10:29:18","slug":"how-to-add-menu-in-wordpress-admin-panel","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/","title":{"rendered":"How to add menu in WordPress admin panel"},"content":{"rendered":"<p>Menu in WordPress admin panel &#8211;\u00a0In this post we see how we can add custom menu to admin sidebar. Sometimes when we work with plugins or theme and we need to show some features or any information in admin page then we can use this code snippet to create the same.<\/p>\n<p>As we know WordPress provide hook using which we can easily add custom admin menu. So, for this we\u2019ll use \u2018admin_menu\u2019 hook and add action to this hook<\/p>\n<h4>1. Creating menu \u2013<\/h4>\n<p>Add this code in functions.php file of your plugin or theme.<\/p>\n<pre class=\"brush:php\">add_action('admin_menu', 'custom_menu');<\/pre>\n<p>In above line of code, first parameter is the hook we discuss about, Second parameter is name of callback function. In callback function you have to write what you want to alter in admin menu.<\/p>\n<pre class=\"brush:php\">function custom_menu() { \n\n  add_menu_page( \n      'Page Title', \n      'Menu Title', \n      'edit_posts', \n      'menu_slug', \n      'page_callback_function', \n      'dashicons-media-spreadsheet' \n\n     );\n}<\/pre>\n<p class=\"brush:php\">As you can see in custom_menu() function I just used add_menu_page(). This function allow you to create a menu in admin sidebar and map that menu to a page.<\/p>\n<p>In custom_menu() function<\/p>\n<ul>\n<li>First parameter is page title. the title tag of the page when the menu is selected..<\/li>\n<li>Second parameter is menu title. The text to be used for menu title.<\/li>\n<li>Third one is capability, The capability required for this menu to be displayed to the user. You can find a list of all WordPress capabilities here \u2013\u00a0<a href=\"https:\/\/codex.wordpress.org\/Roles_and_Capabilities\">https:\/\/codex.wordpress.org\/Roles_and_Capabilities<\/a><\/li>\n<li>Fourth parameter is menu slug, which is used for creating page URL. Keep this unique.<\/li>\n<li>Fifth parameter is page callback function. The function to be called to output the content for this page.<\/li>\n<li>Sixth parameter is for icon, either you can provide a URL\u00a0of image or you can choose predefined WordPress icons.\u00a0<a href=\"https:\/\/developer.wordpress.org\/resource\/dashicons\/\">https:\/\/developer.wordpress.org\/resource\/dashicons\/<\/a><\/li>\n<\/ul>\n<p><img decoding=\"async\" class=\"alignnone wp-image-137972 size-full\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png\" alt=\"Wordpress Dashboard\" width=\"878\" height=\"311\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png 878w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1-250x89.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1-300x106.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1-768x272.png 768w\" sizes=\"(max-width: 878px) 100vw, 878px\" loading=\"lazy\" \/><\/p>\n<p>Reference \u2013 <a href=\"https:\/\/themes.artbees.net\/blog\/wordpress-custom-admin-pages\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/themes.artbees.net\/blog\/wordpress-custom-admin-pages\/<\/a><\/p>\n<div class=\"panel-heading\">\n<div>\n<h3 id=\"panel-0\" class=\"panel-title\">Support<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<div>\n<p>Still have any issues feel free to add a ticket and let us know your views to make the code better <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noopener noreferrer\">create a ticket<\/a>.<\/p>\n<p>Thanks for Your Time! Have a Good Day! Also, <a href=\"https:\/\/webkul.com\/hire-woocommerce-developers\/\">Hire WooCommerce Developers <\/a>for all kinds of services for web and mobile development, plugin development, mobile app, design services, and much more.<\/p>\n<p>If you need custom\u00a0<a href=\"https:\/\/webkul.com\/website-development\/\" target=\"_blank\" rel=\"noreferrer noopener\" data-wpel-link=\"internal\">WordPress Development services<\/a>\u00a0then feel free to\u00a0<a href=\"https:\/\/webkul.com\/contacts\" target=\"_blank\" rel=\"noreferrer noopener\" data-wpel-link=\"internal\">reach us<\/a> and also explore our exclusive range of WordPress <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" data-wpel-link=\"internal\">WooCommerce Extensions<\/a>.<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Menu in WordPress admin panel &#8211;\u00a0In this post we see how we can add custom menu to admin sidebar. Sometimes when we work with plugins or theme and we need to show some features or any information in admin page then we can use this code snippet to create the same. As we know WordPress <a href=\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":209,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1260],"tags":[],"class_list":["post-137939","post","type-post","status-publish","format-standard","hentry","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 add menu in WordPress admin panel - Webkul Blog<\/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:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add menu in WordPress admin panel - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Menu in WordPress admin panel &#8211;\u00a0In this post we see how we can add custom menu to admin sidebar. Sometimes when we work with plugins or theme and we need to show some features or any information in admin page then we can use this code snippet to create the same. As we know WordPress [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/\" \/>\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=\"2018-08-10T15:29:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-18T10:29:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png\" \/>\n<meta name=\"author\" content=\"Mohit Verma\" \/>\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=\"Mohit Verma\" \/>\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-add-menu-in-wordpress-admin-panel\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/\"},\"author\":{\"name\":\"Mohit Verma\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/a8cfc50e5f617fb22102e7078744f684\"},\"headline\":\"How to add menu in WordPress admin panel\",\"datePublished\":\"2018-08-10T15:29:38+00:00\",\"dateModified\":\"2023-09-18T10:29:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/\"},\"wordCount\":382,\"commentCount\":16,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png\",\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/\",\"name\":\"How to add menu in WordPress admin panel - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png\",\"datePublished\":\"2018-08-10T15:29:38+00:00\",\"dateModified\":\"2023-09-18T10:29:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png\",\"width\":\"878\",\"height\":\"311\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add menu in WordPress admin panel\"}]},{\"@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\/a8cfc50e5f617fb22102e7078744f684\",\"name\":\"Mohit Verma\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8422227b5a202e62c533159506db4d785ddaea670abadc139d6ed65e67617e42?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\/8422227b5a202e62c533159506db4d785ddaea670abadc139d6ed65e67617e42?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Mohit Verma\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/mohit-verma178\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to add menu in WordPress admin panel - Webkul Blog","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-menu-in-wordpress-admin-panel\/","og_locale":"en_US","og_type":"article","og_title":"How to add menu in WordPress admin panel - Webkul Blog","og_description":"Menu in WordPress admin panel &#8211;\u00a0In this post we see how we can add custom menu to admin sidebar. Sometimes when we work with plugins or theme and we need to show some features or any information in admin page then we can use this code snippet to create the same. As we know WordPress [...]","og_url":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-08-10T15:29:38+00:00","article_modified_time":"2023-09-18T10:29:18+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png","type":"","width":"","height":""}],"author":"Mohit Verma","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Mohit Verma","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/"},"author":{"name":"Mohit Verma","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/a8cfc50e5f617fb22102e7078744f684"},"headline":"How to add menu in WordPress admin panel","datePublished":"2018-08-10T15:29:38+00:00","dateModified":"2023-09-18T10:29:18+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/"},"wordCount":382,"commentCount":16,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png","articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/","url":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/","name":"How to add menu in WordPress admin panel - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png","datePublished":"2018-08-10T15:29:38+00:00","dateModified":"2023-09-18T10:29:18+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot-1.png","width":"878","height":"311"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add menu in WordPress admin panel"}]},{"@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\/a8cfc50e5f617fb22102e7078744f684","name":"Mohit Verma","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8422227b5a202e62c533159506db4d785ddaea670abadc139d6ed65e67617e42?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\/8422227b5a202e62c533159506db4d785ddaea670abadc139d6ed65e67617e42?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Mohit Verma"},"url":"https:\/\/webkul.com\/blog\/author\/mohit-verma178\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/137939","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\/209"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=137939"}],"version-history":[{"count":29,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/137939\/revisions"}],"predecessor-version":[{"id":400819,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/137939\/revisions\/400819"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=137939"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=137939"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=137939"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}