{"id":361,"date":"2014-08-22T23:55:00","date_gmt":"2014-08-22T23:55:00","guid":{"rendered":"https:\/\/cms.enriquechavez.co\/?p=361"},"modified":"2021-10-29T23:57:28","modified_gmt":"2021-10-29T23:57:28","slug":"how-to-change-the-email-sender-in-wordpress","status":"publish","type":"post","link":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/","title":{"rendered":"How to Change the Email Sender in WordPress"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">On a daily basis as WordPress site owners, we receive email notifications when someone submitted a comment when a user signed up or did something that required that WordPress send us an Email.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This email by default used a generic name and address in the form sender.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">From name: WordPress\nFrom address: wordpress@your-domain.com<\/pre>\n\n\n\n<div class=\"wp-block-image size-full wp-image-1324\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"701\" height=\"64\" src=\"https:\/\/cms.enriquechavez.co\/wp-content\/uploads\/2021\/10\/generic-address.png\" alt=\"\" class=\"wp-image-362\" srcset=\"https:\/\/cms.enriquechavez.co\/wp-content\/uploads\/2021\/10\/generic-address.png 701w, https:\/\/cms.enriquechavez.co\/wp-content\/uploads\/2021\/10\/generic-address-300x27.png 300w\" sizes=\"auto, (max-width: 701px) 100vw, 701px\" \/><figcaption>Email Generic Address<\/figcaption><\/figure><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Sometimes a client or ourselves want to customize this address, basically to avoid the filtered spam or just for aesthetic, to archive this there are two ways to do that.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Programmatically Change Email Sender in WordPress<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress as always offers a couple of filters to hook and change those values.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In your <em><strong>functions.php<\/strong><\/em> file, you need to add the custom filters, the first one will be <a href=\"http:\/\/codex.wordpress.org\/Plugin_API\/Filter_Reference\/wp_mail_from_name\" target=\"_blank\" rel=\"noreferrer noopener\">wp_mail_from_name<\/a>\u00a0to change the &#8220;WordPress&#8221; string.<\/p>\n\n\n\n<pre class=\"wp-block-code php\"><code>&lt;?php \n\nfunction ec_mail_name( $email ){\n  return 'Joe Doe'; \/\/ new email name from sender.\n}\nadd_filter( 'wp_mail_from_name', 'ec_mail_name' );<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">As you can see, the filter function just needs to return the name that you want to use.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The second filter is <a href=\"http:\/\/codex.wordpress.org\/Plugin_API\/Filter_Reference\/wp_mail_from\" target=\"_blank\" rel=\"noreferrer noopener\">wp_mail_from<\/a> and with this filter, we&#8217;ll change the from address.<\/p>\n\n\n\n<pre class=\"wp-block-code php\"><code>&lt;?php \n \nfunction ec_mail_from ($email ){\n  return 'joe@doe.com'; \/\/ new email address from sender.\n}\nadd_filter( 'wp_mail_from', 'ec_mail_from' );<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Same as the <a href=\"http:\/\/codex.wordpress.org\/Plugin_API\/Filter_Reference\/wp_mail_from_name\" target=\"_blank\" rel=\"noreferrer noopener\">wp_mail_from_name<\/a>, the filter function just needs to return the email address to use as the from address.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Use a Plugin to Change Email Sender in WordPress<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Lately, I have been using the first option to change the sender address, copying and pasting the same code over and over, so I decided to create a simple plugin to take care of this task.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">WP Simple Mail Sender Plugin.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WP Simple Mail Sender<\/strong> is a very simple plugin to change the sender address and name in WordPress outgoing emails.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WP Simple Mail Sender<\/strong> allows you to use the values in the General setting, <em>Site Title<\/em> and the <em>Admin Email<\/em> instead of the default value <strong>WordPress wordpress@yourdomain.com<\/strong> also you can use custom values as well, you can configure the <em>From Address<\/em> and <em>From Name<\/em> if you do not want to use the General settings values.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Get the zip file.<\/h5>\n\n\n\n<p class=\"wp-block-paragraph\"><del>Right now the plugin is awaiting review to be hosted in the <a href=\"http:\/\/wordpress.org\/plugins\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress.org<\/a> official repositories, But meanwhile you can download it from my&nbsp;<a href=\"https:\/\/github.com\/tmeister\/wp-simple-email-sender\" target=\"_blank\" rel=\"noreferrer noopener\">Github Account<\/a> or directly <a href=\"https:\/\/github.com\/Tmeister\/wp-simple-email-sender\/archive\/master.zip\" target=\"_blank\" rel=\"noreferrer noopener\">wp-simple-email-sender.zip<\/a><\/del><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You can download the zip file directly from the official WordPress repo\u00a0<a href=\"http:\/\/wordpress.org\/plugins\/wp-simple-mail-sender\/\" target=\"_blank\" rel=\"noreferrer noopener\">http:\/\/wordpress.org\/plugins\/wp-simple-mail-sender\/<\/a>\u00a0or install the plugin as any other WordPress Plugin.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>On a daily basis as WordPress site owners, we receive email notifications when someone submitted a comment when a user signed up or did something that required that WordPress send us an Email.<\/p>\n","protected":false},"author":1,"featured_media":364,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[244],"tags":[],"class_list":["post-361","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress-plugins"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Change the Email Sender in WordPress - Enrique Ch\u00e1vez Fullstack Developer<\/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:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Change the Email Sender in WordPress - Enrique Ch\u00e1vez Fullstack Developer\" \/>\n<meta property=\"og:description\" content=\"On a daily basis as WordPress site owners, we receive email notifications when someone submitted a comment when a user signed up or did something that required that WordPress send us an Email.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"Enrique Ch\u00e1vez Fullstack Developer\" \/>\n<meta property=\"article:published_time\" content=\"2014-08-22T23:55:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-29T23:57:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cms.enriquechavez.co\/wp-content\/uploads\/2021\/10\/post-boxes-optimized.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"618\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Tmeister\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tmeister\" \/>\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:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/\"},\"author\":{\"name\":\"Tmeister\",\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/#\\\/schema\\\/person\\\/52f69f25d6b54a137e9bb885dd20cdf8\"},\"headline\":\"How to Change the Email Sender in WordPress\",\"datePublished\":\"2014-08-22T23:55:00+00:00\",\"dateModified\":\"2021-10-29T23:57:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/\"},\"wordCount\":380,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/#\\\/schema\\\/person\\\/52f69f25d6b54a137e9bb885dd20cdf8\"},\"image\":{\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cms.enriquechavez.co\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/post-boxes-optimized.jpg\",\"articleSection\":[\"WordPress Plugins\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/\",\"url\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/\",\"name\":\"How to Change the Email Sender in WordPress - Enrique Ch\u00e1vez Fullstack Developer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cms.enriquechavez.co\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/post-boxes-optimized.jpg\",\"datePublished\":\"2014-08-22T23:55:00+00:00\",\"dateModified\":\"2021-10-29T23:57:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/#primaryimage\",\"url\":\"https:\\\/\\\/cms.enriquechavez.co\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/post-boxes-optimized.jpg\",\"contentUrl\":\"https:\\\/\\\/cms.enriquechavez.co\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/post-boxes-optimized.jpg\",\"width\":1200,\"height\":618},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/how-to-change-the-email-sender-in-wordpress\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cms.enriquechavez.co\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Change the Email Sender in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/#website\",\"url\":\"https:\\\/\\\/cms.enriquechavez.co\\\/\",\"name\":\"Enrique Ch\u00e1vez Fullstack Developer\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/#\\\/schema\\\/person\\\/52f69f25d6b54a137e9bb885dd20cdf8\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cms.enriquechavez.co\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/cms.enriquechavez.co\\\/#\\\/schema\\\/person\\\/52f69f25d6b54a137e9bb885dd20cdf8\",\"name\":\"Tmeister\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/093cb2781a999a54a8c7bf7202c241adc5b45a3a36a9cf7d01807d724f2164d9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/093cb2781a999a54a8c7bf7202c241adc5b45a3a36a9cf7d01807d724f2164d9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/093cb2781a999a54a8c7bf7202c241adc5b45a3a36a9cf7d01807d724f2164d9?s=96&d=mm&r=g\",\"caption\":\"Tmeister\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/093cb2781a999a54a8c7bf7202c241adc5b45a3a36a9cf7d01807d724f2164d9?s=96&d=mm&r=g\"},\"description\":\"Enrique Chavez is a full-stack developer with almost 20 years of experience in the industry. he is an extremely versatile developer working on a plethora of projects, from startups to established companies.\",\"sameAs\":[\"https:\\\/\\\/enriquechavez.co\"],\"url\":\"https:\\\/\\\/cms.enriquechavez.co\\\/author\\\/echavez\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Change the Email Sender in WordPress - Enrique Ch\u00e1vez Fullstack Developer","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:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How to Change the Email Sender in WordPress - Enrique Ch\u00e1vez Fullstack Developer","og_description":"On a daily basis as WordPress site owners, we receive email notifications when someone submitted a comment when a user signed up or did something that required that WordPress send us an Email.","og_url":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/","og_site_name":"Enrique Ch\u00e1vez Fullstack Developer","article_published_time":"2014-08-22T23:55:00+00:00","article_modified_time":"2021-10-29T23:57:28+00:00","og_image":[{"width":1200,"height":618,"url":"https:\/\/cms.enriquechavez.co\/wp-content\/uploads\/2021\/10\/post-boxes-optimized.jpg","type":"image\/jpeg"}],"author":"Tmeister","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tmeister","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/#article","isPartOf":{"@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/"},"author":{"name":"Tmeister","@id":"https:\/\/cms.enriquechavez.co\/#\/schema\/person\/52f69f25d6b54a137e9bb885dd20cdf8"},"headline":"How to Change the Email Sender in WordPress","datePublished":"2014-08-22T23:55:00+00:00","dateModified":"2021-10-29T23:57:28+00:00","mainEntityOfPage":{"@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/"},"wordCount":380,"commentCount":0,"publisher":{"@id":"https:\/\/cms.enriquechavez.co\/#\/schema\/person\/52f69f25d6b54a137e9bb885dd20cdf8"},"image":{"@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/cms.enriquechavez.co\/wp-content\/uploads\/2021\/10\/post-boxes-optimized.jpg","articleSection":["WordPress Plugins"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/","url":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/","name":"How to Change the Email Sender in WordPress - Enrique Ch\u00e1vez Fullstack Developer","isPartOf":{"@id":"https:\/\/cms.enriquechavez.co\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/cms.enriquechavez.co\/wp-content\/uploads\/2021\/10\/post-boxes-optimized.jpg","datePublished":"2014-08-22T23:55:00+00:00","dateModified":"2021-10-29T23:57:28+00:00","breadcrumb":{"@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/#primaryimage","url":"https:\/\/cms.enriquechavez.co\/wp-content\/uploads\/2021\/10\/post-boxes-optimized.jpg","contentUrl":"https:\/\/cms.enriquechavez.co\/wp-content\/uploads\/2021\/10\/post-boxes-optimized.jpg","width":1200,"height":618},{"@type":"BreadcrumbList","@id":"https:\/\/cms.enriquechavez.co\/how-to-change-the-email-sender-in-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cms.enriquechavez.co\/"},{"@type":"ListItem","position":2,"name":"How to Change the Email Sender in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/cms.enriquechavez.co\/#website","url":"https:\/\/cms.enriquechavez.co\/","name":"Enrique Ch\u00e1vez Fullstack Developer","description":"","publisher":{"@id":"https:\/\/cms.enriquechavez.co\/#\/schema\/person\/52f69f25d6b54a137e9bb885dd20cdf8"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cms.enriquechavez.co\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/cms.enriquechavez.co\/#\/schema\/person\/52f69f25d6b54a137e9bb885dd20cdf8","name":"Tmeister","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/093cb2781a999a54a8c7bf7202c241adc5b45a3a36a9cf7d01807d724f2164d9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/093cb2781a999a54a8c7bf7202c241adc5b45a3a36a9cf7d01807d724f2164d9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/093cb2781a999a54a8c7bf7202c241adc5b45a3a36a9cf7d01807d724f2164d9?s=96&d=mm&r=g","caption":"Tmeister"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/093cb2781a999a54a8c7bf7202c241adc5b45a3a36a9cf7d01807d724f2164d9?s=96&d=mm&r=g"},"description":"Enrique Chavez is a full-stack developer with almost 20 years of experience in the industry. he is an extremely versatile developer working on a plethora of projects, from startups to established companies.","sameAs":["https:\/\/enriquechavez.co"],"url":"https:\/\/cms.enriquechavez.co\/author\/echavez\/"}]}},"_links":{"self":[{"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/posts\/361","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/comments?post=361"}],"version-history":[{"count":2,"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/posts\/361\/revisions"}],"predecessor-version":[{"id":368,"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/posts\/361\/revisions\/368"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/media\/364"}],"wp:attachment":[{"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/media?parent=361"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/categories?post=361"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cms.enriquechavez.co\/wp-json\/wp\/v2\/tags?post=361"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}