{"id":22234,"date":"2014-10-17T18:01:10","date_gmt":"2014-10-17T10:01:10","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=22234"},"modified":"2025-04-04T02:01:08","modified_gmt":"2025-04-03T18:01:08","slug":"wordpress-howdy-customized","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/","title":{"rendered":"How to Customize &#8220;Howdy&#8221; In WordPress Admin Bar [Quick Tip]"},"content":{"rendered":"<p>Every WordPress user should be familiar with <strong>the \u201cHowdy\u201d message that appears in the Admin Bar<\/strong> when they are logged in. The problem with \u201cHowdy\u201d is that it\u2019s an <em>informal<\/em> word and sounds very unprofessional. Perhaps for some reason your client is given access to your WordPress Dashboard. If that\u2019s the case, you might want to change it into a more proper greeting like \u201cWelcome\u201d for example.<\/p>\n<p>In this post, we will cover how to do so. To top it off, we\u2019ll also show you <strong>how to display a customized greeting<\/strong> for special public holidays like Christmas and New Year. If this sounds like an idea you have been wanting to execute for awhile now, let\u2019s check out how it\u2019s done.<\/p>\n<p class=\"note\"><strong>Recommended Reading:<\/strong> <a href=\"https:\/\/www.hongkiat.com\/blog\/wordpress-custom-template-tags\/\">How To Create Custom WordPress Template Tags<\/a><\/p>\n<h2>Overwrite the \u201cHowdy\u201d Message<\/h2>\n<p>First, we want to overwrite the \u201cHowdy\u201d. Add these lines in the <strong>functions.php<\/strong> of your theme.<\/p>\n<pre>\r\nfunction howdy_message($translated_text, $text, $domain) {\r\n    $new_message = str_replace('Howdy', 'Welcome', $text);\r\n    return $new_message;\r\n}\r\nadd_filter('gettext', 'howdy_message', 10, 3);\r\n<\/pre>\n<p>The above function replaces the \u201cHowdy\u201d with \u201cWelcome\u201d using the PHP <code>str_replace<\/code> function and applies the function through the WordPress own gettext filter. Once added, refresh the WordPress Dashboard and  the greeting should now say \u201cWelcome\u201d, as shown below.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-howdy-customized\/the-welcome-message.jpg\" width=\"600\" height=\"200\"><\/p>\n<h2>Special Holiday Greeting<\/h2>\n<p>Now we can <strong>make the greeting message more personalized<\/strong>. The idea is  to greet the user during the holiday season. For example, if today was New Year, we would like to display Happy New Year  followed by the user name. Likewise, if it were Christmas, we could wish the user with a Christmas greeting.<\/p>\n<p>We need to get the month and the date. In PHP we can use <code>date()<\/code> function to retrieve the current date and month. Create a new function to call date() and output the result, like so.<\/p>\n<pre>\r\nfunction public_holiday() {\r\n\t$date = date('d-m');\r\n}\r\n<\/pre>\n<p>Assuming that today is  9th September, the output of this function would be <strong>22-09<\/strong>. That is also to say that 01-01 is New Year, while 25-12 is Christmas. Having retrieved the date we can utilize it to set the greeting message, like so.<\/p>\n<pre>\r\nfunction public_holiday() {\r\n\t$date = date('d-m');\r\n\tswitch($date) {\r\n\t\tcase '01-01':\r\n\t\t\t$message = 'Happy New Years';\r\n\t\tbreak;\r\n\r\n\t\tcase '25-12':\r\n\t\t\t$message = 'Merry Christmas';\r\n\t\tbreak;\r\n\r\n\t\tdefault:\r\n\t\t\t$message = 'Welcome';\r\n\t}\r\n\treturn $message;\r\n}\r\n<\/pre>\n<p>As you can see above, we also set the default message to \u201cWelcome\u201d when the return value of the <code>$date<\/code> does not fall to \u201901-01\u2032 or \u201925-12\u2032.<\/p>\n<p>Now, we need to slightly change our previous function in order to show the message, like so.<\/p>\n<pre>\r\nfunction howdy_message($translated_text, $text, $domain) {\r\n\t$message = public_holiday();\r\n    $new_message = str_replace('Howdy', $message, $text);\r\n    return $new_message;\r\n}\r\nadd_filter('gettext', 'howdy_message', 10, 3);\r\n<\/pre>\n<p>Refresh the WordPress Dashboard once again. And if it is New Year or Christmas you should see the Howdy message change into what you\u2019ve specified as per below.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-howdy-customized\/the-result.jpg\" width=\"600\" height=\"400\"><\/p>\n<h2>More Ideas<\/h2>\n<p>There are more cool ideas that we can achieve. Some examples of what you can do to improve this particular area of WordPress includes adding more special holiday greetings like for Eid or <strong>by displaying a localized greeting<\/strong> based on the users\u2019 current location or language preference. All you need is some creativity and  basic understanding on PHP and <a href=\"https:\/\/developer.wordpress.org\/reference\/\" target=\"_blank\" rel=\"noopener\">WordPress functions, classes, and hooks<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Every WordPress user should be familiar with the \u201cHowdy\u201d message that appears in the Admin Bar when they are logged in. The problem with \u201cHowdy\u201d is that it\u2019s an informal word and sounds very unprofessional. Perhaps for some reason your client is given access to your WordPress Dashboard. If that\u2019s the case, you might want&hellip;<\/p>\n","protected":false},"author":113,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[49],"tags":[4663,2873],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Customize \u00e2\u20ac\u0153Howdy\u00e2\u20ac\u009d In WordPress Admin Bar<\/title>\n<meta name=\"description\" content=\"Every WordPress user should be familiar with the &quot;Howdy&quot; message that appears in the Admin Bar when they are logged in. The problem with &quot;Howdy&quot; is that\" \/>\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.hongkiat.com\/blog\/wordpress-howdy-customized\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Customize &quot;Howdy&quot; In WordPress Admin Bar [Quick Tip]\" \/>\n<meta property=\"og:description\" content=\"Every WordPress user should be familiar with the &quot;Howdy&quot; message that appears in the Admin Bar when they are logged in. The problem with &quot;Howdy&quot; is that\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2014-10-17T10:01:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-03T18:01:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-howdy-customized\/the-welcome-message.jpg\" \/>\n<meta name=\"author\" content=\"Thoriq Firdaus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tfirdaus\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thoriq Firdaus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"How to Customize &#8220;Howdy&#8221; In WordPress Admin Bar [Quick Tip]\",\"datePublished\":\"2014-10-17T10:01:10+00:00\",\"dateModified\":\"2025-04-03T18:01:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/\"},\"wordCount\":475,\"commentCount\":12,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-howdy-customized\\\/the-welcome-message.jpg\",\"keywords\":[\"ad-divi\",\"wordpress admin\"],\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/\",\"name\":\"How To Customize \u00e2\u20ac\u0153Howdy\u00e2\u20ac\u009d In WordPress Admin Bar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-howdy-customized\\\/the-welcome-message.jpg\",\"datePublished\":\"2014-10-17T10:01:10+00:00\",\"dateModified\":\"2025-04-03T18:01:08+00:00\",\"description\":\"Every WordPress user should be familiar with the \\\"Howdy\\\" message that appears in the Admin Bar when they are logged in. The problem with \\\"Howdy\\\" is that\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-howdy-customized\\\/the-welcome-message.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-howdy-customized\\\/the-welcome-message.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-howdy-customized\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Customize &#8220;Howdy&#8221; In WordPress Admin Bar [Quick Tip]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\",\"name\":\"Thoriq Firdaus\",\"description\":\"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.\",\"sameAs\":[\"https:\\\/\\\/thoriq.com\",\"https:\\\/\\\/x.com\\\/tfirdaus\"],\"jobTitle\":\"Web Developer\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/thoriq\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Customize \u00e2\u20ac\u0153Howdy\u00e2\u20ac\u009d In WordPress Admin Bar","description":"Every WordPress user should be familiar with the \"Howdy\" message that appears in the Admin Bar when they are logged in. The problem with \"Howdy\" is that","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.hongkiat.com\/blog\/wordpress-howdy-customized\/","og_locale":"en_US","og_type":"article","og_title":"How to Customize \"Howdy\" In WordPress Admin Bar [Quick Tip]","og_description":"Every WordPress user should be familiar with the \"Howdy\" message that appears in the Admin Bar when they are logged in. The problem with \"Howdy\" is that","og_url":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2014-10-17T10:01:10+00:00","article_modified_time":"2025-04-03T18:01:08+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-howdy-customized\/the-welcome-message.jpg","type":"","width":"","height":""}],"author":"Thoriq Firdaus","twitter_card":"summary_large_image","twitter_creator":"@tfirdaus","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Thoriq Firdaus","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"How to Customize &#8220;Howdy&#8221; In WordPress Admin Bar [Quick Tip]","datePublished":"2014-10-17T10:01:10+00:00","dateModified":"2025-04-03T18:01:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/"},"wordCount":475,"commentCount":12,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-howdy-customized\/the-welcome-message.jpg","keywords":["ad-divi","wordpress admin"],"articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/","url":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/","name":"How To Customize \u00e2\u20ac\u0153Howdy\u00e2\u20ac\u009d In WordPress Admin Bar","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-howdy-customized\/the-welcome-message.jpg","datePublished":"2014-10-17T10:01:10+00:00","dateModified":"2025-04-03T18:01:08+00:00","description":"Every WordPress user should be familiar with the \"Howdy\" message that appears in the Admin Bar when they are logged in. The problem with \"Howdy\" is that","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-howdy-customized\/the-welcome-message.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-howdy-customized\/the-welcome-message.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-howdy-customized\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Customize &#8220;Howdy&#8221; In WordPress Admin Bar [Quick Tip]"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807","name":"Thoriq Firdaus","description":"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.","sameAs":["https:\/\/thoriq.com","https:\/\/x.com\/tfirdaus"],"jobTitle":"Web Developer","url":"https:\/\/www.hongkiat.com\/blog\/author\/thoriq\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-5MC","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/22234","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=22234"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/22234\/revisions"}],"predecessor-version":[{"id":73714,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/22234\/revisions\/73714"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=22234"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=22234"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=22234"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=22234"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}