{"id":6537,"date":"2021-09-28T12:48:50","date_gmt":"2021-09-28T07:18:50","guid":{"rendered":"https:\/\/www.goseeko.com\/blog\/?p=5737"},"modified":"2021-09-28T12:48:50","modified_gmt":"2021-09-28T07:18:50","slug":"what-is-overloading-of-function","status":"publish","type":"post","link":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/","title":{"rendered":"What is Overloading of Function?"},"content":{"rendered":"\n<p>The C++ programming feature of <a href=\"https:\/\/en.wikipedia.org\/wiki\/Function_overloading\" target=\"_blank\" rel=\"noreferrer noopener\">function overloading<\/a> allows us to have many functions with the same name but different argument lists. When I say parameter list, I&#8217;m referring to the data type and order in which the parameters are presented.&nbsp;<\/p>\n\n\n\n<p>The parameter list of a function myfunction(int a, double b), for example, is (int, double), which is different from the parameter list of a function myfunction(double a, int b) (double, int). Overloading is a polymorphism that happens throughout the compilation process. Let&#8217;s look at the overloading rules now that we know what a parameter list is:\u00a0<\/p>\n\n\n\n<p>we can have the following functions in the same scope.<\/p>\n\n\n\n<p>sum(int a, int b)<\/p>\n\n\n\n<p>sum(int a, int b, int c)<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Rules&nbsp; &#8211;&nbsp;<\/strong><\/h2>\n\n\n\n<p>Three different circumstances or various parameters:<\/p>\n\n\n\n<p>1. The parameter types for these functions are different.<\/p>\n\n\n\n<p>&nbsp;sum(int a, int b)<\/p>\n\n\n\n<p>sum(double a, double b)<\/p>\n\n\n\n<p>2. The number of parameters in these functions varies.<\/p>\n\n\n\n<p>sum(int a, int b)<\/p>\n\n\n\n<p>sum(int a, int b, int c)<\/p>\n\n\n\n<p>3. The parameters of these functions are in a different order.<\/p>\n\n\n\n<p>sum(int a, double b)<\/p>\n\n\n\n<p>sum(double a, int b)<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>program&nbsp;<\/strong><\/h2>\n\n\n\n<p>#include&nbsp;<\/p>\n\n\n\n<p>using namespace std;<\/p>\n\n\n\n<p>class Addition {<\/p>\n\n\n\n<p>public:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;int sum(int num1,int num2) {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return num1+num2;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;}<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;int sum(int num1,int num2, int num3) {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return num1+num2+num3;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;}<\/p>\n\n\n\n<p>};<\/p>\n\n\n\n<p>int main(void) {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;Addition obj;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt;obj.sum(16, 19)&lt;&lt;endl;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt;obj.sum(18, 10, 100);<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;return 0;<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>Output<\/p>\n\n\n\n<p>35<\/p>\n\n\n\n<p>128<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Advantages&nbsp;&nbsp;<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>It saves memory, maintains consistency, creates a clear interface for methods independent of the parameter type, and improves program readability.<\/li><li>We can create multiple functions with the same name using the function overloading concept, but the parameters given should be of distinct kinds.<\/li><li>Overloading functions speed up the program&#8217;s execution.<\/li><li>Function overloading is a technique for reusing code and saving memory.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Disadvantages&nbsp;&nbsp;<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>The function overloading procedure cannot be used to overload function declarations that differ by return type.<\/li><li>The same arguments or name types cannot be overloaded if any static member function is declared.<\/li><\/ul>\n\n\n\n<p><strong>Interested in learning about similar topics? Here are a few hand-picked blogs for you!<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" id=\"block-31e5070e-29b0-4ecb-99c2-fa8e82c79693\"><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-recursion\/\" target=\"_blank\">What is recursion?<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-a-compiler\/\" target=\"_blank\">Describe compiler?<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-programming\/\" target=\"_blank\">What is programming?<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-a-constructor\/\" target=\"_blank\">Explain constructor?<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-object-oriented-programming\/\" target=\"_blank\">What is object oriented programming?<\/a><\/li><\/ul>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The C++ programming feature of function overloading allows us to have many functions with the same name but different argument lists. When&hellip;<\/p>\n","protected":false},"author":28,"featured_media":6404,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[36],"tags":[],"class_list":["post-6537","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-computer-science-software-engineering-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Overloading of Function? - Goseeko blog<\/title>\n<meta name=\"description\" content=\"The C++ programming feature of overloading of function allows us to have many functions with the same name but different argument lists.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Overloading of Function? - Goseeko blog\" \/>\n<meta property=\"og:description\" content=\"The C++ programming feature of overloading of function allows us to have many functions with the same name but different argument lists.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/\" \/>\n<meta property=\"og:site_name\" content=\"Goseeko blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/goseeko\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-28T07:18:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png\" \/>\n\t<meta property=\"og:image:width\" content=\"232\" \/>\n\t<meta property=\"og:image:height\" content=\"217\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Gunjan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@goseeko\" \/>\n<meta name=\"twitter:site\" content=\"@goseeko\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gunjan\" \/>\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:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/\"},\"author\":{\"name\":\"Gunjan\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c\"},\"headline\":\"What is Overloading of Function?\",\"datePublished\":\"2021-09-28T07:18:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/\"},\"wordCount\":421,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png?fit=232%2C217&ssl=1\",\"articleSection\":[\"Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/\",\"url\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/\",\"name\":\"What is Overloading of Function? - Goseeko blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png?fit=232%2C217&ssl=1\",\"datePublished\":\"2021-09-28T07:18:50+00:00\",\"description\":\"The C++ programming feature of overloading of function allows us to have many functions with the same name but different argument lists.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png?fit=232%2C217&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png?fit=232%2C217&ssl=1\",\"width\":232,\"height\":217},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.goseeko.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Overloading of Function?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#website\",\"url\":\"https:\/\/www.goseeko.com\/blog\/\",\"name\":\"Goseeko blog\",\"description\":\"Learning beyond college, Students platform for life skills.\",\"publisher\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.goseeko.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\",\"name\":\"Goseeko.com\",\"url\":\"https:\/\/www.goseeko.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1\",\"contentUrl\":\"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1\",\"width\":2471,\"height\":2471,\"caption\":\"Goseeko.com\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/goseeko\",\"https:\/\/x.com\/goseeko\",\"https:\/\/www.instagram.com\/goseeko\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c\",\"name\":\"Gunjan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g\",\"caption\":\"Gunjan\"},\"url\":\"https:\/\/www.goseeko.com\/blog\/author\/gunjangoseeko\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Overloading of Function? - Goseeko blog","description":"The C++ programming feature of overloading of function allows us to have many functions with the same name but different argument lists.","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:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/","og_locale":"en_US","og_type":"article","og_title":"What is Overloading of Function? - Goseeko blog","og_description":"The C++ programming feature of overloading of function allows us to have many functions with the same name but different argument lists.","og_url":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/","og_site_name":"Goseeko blog","article_publisher":"https:\/\/www.facebook.com\/goseeko","article_published_time":"2021-09-28T07:18:50+00:00","og_image":[{"width":232,"height":217,"url":"https:\/\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png","type":"image\/png"}],"author":"Gunjan","twitter_card":"summary_large_image","twitter_creator":"@goseeko","twitter_site":"@goseeko","twitter_misc":{"Written by":"Gunjan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#article","isPartOf":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/"},"author":{"name":"Gunjan","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c"},"headline":"What is Overloading of Function?","datePublished":"2021-09-28T07:18:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/"},"wordCount":421,"commentCount":0,"publisher":{"@id":"https:\/\/www.goseeko.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png?fit=232%2C217&ssl=1","articleSection":["Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/","url":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/","name":"What is Overloading of Function? - Goseeko blog","isPartOf":{"@id":"https:\/\/www.goseeko.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#primaryimage"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png?fit=232%2C217&ssl=1","datePublished":"2021-09-28T07:18:50+00:00","description":"The C++ programming feature of overloading of function allows us to have many functions with the same name but different argument lists.","breadcrumb":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#primaryimage","url":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png?fit=232%2C217&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png?fit=232%2C217&ssl=1","width":232,"height":217},{"@type":"BreadcrumbList","@id":"https:\/\/www.goseeko.com\/blog\/what-is-overloading-of-function\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.goseeko.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What is Overloading of Function?"}]},{"@type":"WebSite","@id":"https:\/\/www.goseeko.com\/blog\/#website","url":"https:\/\/www.goseeko.com\/blog\/","name":"Goseeko blog","description":"Learning beyond college, Students platform for life skills.","publisher":{"@id":"https:\/\/www.goseeko.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.goseeko.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.goseeko.com\/blog\/#organization","name":"Goseeko.com","url":"https:\/\/www.goseeko.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1","contentUrl":"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1","width":2471,"height":2471,"caption":"Goseeko.com"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/goseeko","https:\/\/x.com\/goseeko","https:\/\/www.instagram.com\/goseeko\/"]},{"@type":"Person","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c","name":"Gunjan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g","caption":"Gunjan"},"url":"https:\/\/www.goseeko.com\/blog\/author\/gunjangoseeko\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/download.png?fit=232%2C217&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/6537","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/comments?post=6537"}],"version-history":[{"count":0,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/6537\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/media\/6404"}],"wp:attachment":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/media?parent=6537"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/categories?post=6537"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/tags?post=6537"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}