{"id":97986,"date":"2017-09-29T15:46:18","date_gmt":"2017-09-29T15:46:18","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=97986"},"modified":"2025-12-17T13:34:31","modified_gmt":"2025-12-17T13:34:31","slug":"woocommerce-account-custom-endpoint","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/","title":{"rendered":"WooCommerce My Account Custom Endpoint"},"content":{"rendered":"<p>We\u2019ll explore how to create and manage custom account endpoints in WooCommerce to personalize the My Account page and improve user experience.<\/p>\n<p>To do this, first we&#8217;ll add rewrite endpoint using WordPress function &#8216;add_rewrite_endpoint&#8217; on &#8216;init&#8217; hook.<\/p>\n<pre class=\"brush:php\">&lt;?php\n\n\/**\n*   Plugin Name: WooCommerce Custom Endpoint Webkul\n*   Description: An example plugin to add custom endpoint to My Account Page.\n*   Author: Webkul\n*   Author URI: https:\/\/webkul.com\n*   Plugin URI: https:\/\/webkul.com\n*   Text Domain: webkul\n*\/\n\n\nfunction wk_custom_endpoint() {\n  add_rewrite_endpoint( 'custom', EP_ROOT | EP_PAGES );\n}\n\nadd_action( 'init', 'wk_custom_endpoint' );\n\n?&gt;<\/pre>\n<p>In add_rewrite_endpoint function first parameter is name of endpoint and second is places where endpoint will add. We add endpoint to root and pages.<\/p>\n<p>The endpoint name is added as query variable. You can explore more places and about this function using below link &#8211;<\/p>\n<p>Reference &#8211;\u00a0<a href=\"https:\/\/codex.wordpress.org\/Rewrite_API\/add_rewrite_endpoint\">https:\/\/codex.wordpress.org\/Rewrite_API\/add_rewrite_endpoint<\/a>.<\/p>\n<p>Now, we will add menu item for this custom endpoint on WooCommerce My Account page menu so that we can access easily. For this we&#8217;ll use &#8216;woocommerce_account_menu_items&#8217; filter.<\/p>\n<pre class=\"brush:php\">add_filter( 'woocommerce_account_menu_items', 'wk_new_menu_items' );\n\n\/**\n* Insert the new endpoint into the My Account menu.\n*\n* @param array $items\n* @return array\n*\/\nfunction wk_new_menu_items( $items ) {\n\t$items[ 'custom' ] = __( 'Custom', 'webkul' );\n\treturn $items;\n}\n<\/pre>\n<p>The above code will add one more menu item named Custom at the end of my account page menu list.<\/p>\n<p>The endpoint has been added, menu item also added, now next thing will be, how can we add content to this new (say) page..? Not to worry, WooCommerce provide the hook using which we can add content &#8211;<\/p>\n<pre class=\"brush:php\">$endpoint = 'custom';\n\nadd_action( 'woocommerce_account_' . $endpoint .  '_endpoint', 'wk_endpoint_content' );\n\nfunction wk_endpoint_content() {\n    \/\/content goes here\n    echo '\/\/content goes here';    \n}\n<\/pre>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">Support<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<div>\n<p>Still have any issue feel free to add a ticket and let us know your views to make the code better\u00a0<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/webkul.uvdesk.com\/en\/customer\/create-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<p>Thanks for Your Time! Have a Good Day!<\/p>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>We\u2019ll explore how to create and manage custom account endpoints in WooCommerce to personalize the My Account page and improve user experience. To do this, first we&#8217;ll add rewrite endpoint using WordPress function &#8216;add_rewrite_endpoint&#8217; on &#8216;init&#8217; hook. &lt;?php \/** * Plugin Name: WooCommerce Custom Endpoint Webkul * Description: An example plugin to add custom endpoint <a href=\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":109,"featured_media":95290,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7966,1260],"tags":[5532,42,1468,1258],"class_list":["post-97986","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress-woocommerce","category-wordpress","tag-endpoint","tag-plugin","tag-woocommerce","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WooCommerce Account Page Custom Endpoint<\/title>\n<meta name=\"description\" content=\"WooCommerce Account Page Custom Endpoint - Add custom endpoint to my account page in front end with default pages like orders, downloads, etc.\" \/>\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-account-custom-endpoint\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WooCommerce Account Page Custom Endpoint\" \/>\n<meta property=\"og:description\" content=\"WooCommerce Account Page Custom Endpoint - Add custom endpoint to my account page in front end with default pages like orders, downloads, etc.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/\" \/>\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=\"2017-09-29T15:46:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-17T13:34:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Varun Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/imVvashistha\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Varun 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-account-custom-endpoint\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/\"},\"author\":{\"name\":\"Varun Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f80f80fad3753d9bdfb065a31cc537d\"},\"headline\":\"WooCommerce My Account Custom Endpoint\",\"datePublished\":\"2017-09-29T15:46:18+00:00\",\"dateModified\":\"2025-12-17T13:34:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/\"},\"wordCount\":283,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png\",\"keywords\":[\"endpoint\",\"plugin\",\"WooCommerce\",\"wordpress\"],\"articleSection\":[\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/\",\"url\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/\",\"name\":\"WooCommerce Account Page Custom Endpoint\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png\",\"datePublished\":\"2017-09-29T15:46:18+00:00\",\"dateModified\":\"2025-12-17T13:34:31+00:00\",\"description\":\"WooCommerce Account Page Custom Endpoint - Add custom endpoint to my account page in front end with default pages like orders, downloads, etc.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png\",\"width\":825,\"height\":260,\"caption\":\"WooCommerce Custom Tab Product Edit Page\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WooCommerce My Account Custom Endpoint\"}]},{\"@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\/5f80f80fad3753d9bdfb065a31cc537d\",\"name\":\"Varun Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2bf364f755500f5f58d13d0fddbeb303ae75529a58e113c5638c7d20ff48b18d?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\/2bf364f755500f5f58d13d0fddbeb303ae75529a58e113c5638c7d20ff48b18d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Varun Kumar\"},\"description\":\"Inquisitive.\",\"sameAs\":[\"https:\/\/x.com\/https:\/\/twitter.com\/imVvashistha\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/varun-kumar286\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WooCommerce Account Page Custom Endpoint","description":"WooCommerce Account Page Custom Endpoint - Add custom endpoint to my account page in front end with default pages like orders, downloads, etc.","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-account-custom-endpoint\/","og_locale":"en_US","og_type":"article","og_title":"WooCommerce Account Page Custom Endpoint","og_description":"WooCommerce Account Page Custom Endpoint - Add custom endpoint to my account page in front end with default pages like orders, downloads, etc.","og_url":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-09-29T15:46:18+00:00","article_modified_time":"2025-12-17T13:34:31+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png","type":"image\/png"}],"author":"Varun Kumar","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/imVvashistha","twitter_site":"@webkul","twitter_misc":{"Written by":"Varun Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/"},"author":{"name":"Varun Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f80f80fad3753d9bdfb065a31cc537d"},"headline":"WooCommerce My Account Custom Endpoint","datePublished":"2017-09-29T15:46:18+00:00","dateModified":"2025-12-17T13:34:31+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/"},"wordCount":283,"commentCount":6,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png","keywords":["endpoint","plugin","WooCommerce","wordpress"],"articleSection":["WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/","url":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/","name":"WooCommerce Account Page Custom Endpoint","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png","datePublished":"2017-09-29T15:46:18+00:00","dateModified":"2025-12-17T13:34:31+00:00","description":"WooCommerce Account Page Custom Endpoint - Add custom endpoint to my account page in front end with default pages like orders, downloads, etc.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/woocommerce-code-snippet.png","width":825,"height":260,"caption":"WooCommerce Custom Tab Product Edit Page"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/woocommerce-account-custom-endpoint\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"WooCommerce My Account Custom Endpoint"}]},{"@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\/5f80f80fad3753d9bdfb065a31cc537d","name":"Varun Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2bf364f755500f5f58d13d0fddbeb303ae75529a58e113c5638c7d20ff48b18d?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\/2bf364f755500f5f58d13d0fddbeb303ae75529a58e113c5638c7d20ff48b18d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Varun Kumar"},"description":"Inquisitive.","sameAs":["https:\/\/x.com\/https:\/\/twitter.com\/imVvashistha"],"url":"https:\/\/webkul.com\/blog\/author\/varun-kumar286\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/97986","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\/109"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=97986"}],"version-history":[{"count":6,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/97986\/revisions"}],"predecessor-version":[{"id":517833,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/97986\/revisions\/517833"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/95290"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=97986"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=97986"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=97986"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}