{"id":24533,"date":"2015-08-25T21:01:28","date_gmt":"2015-08-25T13:01:28","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=24533"},"modified":"2024-05-27T22:48:00","modified_gmt":"2024-05-27T14:48:00","slug":"facebook-author-tag-wordpress","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/","title":{"rendered":"How to Easily Add Facebook Authorship in WordPress"},"content":{"rendered":"<p>Facebook offers various tools to enhance engagement across its network, including the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/developers.facebook.com\/products\/social-plugins\/comments\">Comment<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/developers.facebook.com\/docs\/plugins\/like-box-for-pages\">Likebox<\/a>, and the popular <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/developers.facebook.com\/docs\/plugins\/like-button\"><strong>Like<\/strong> button<\/a>. Additionally, it has recently enhanced its Author Tagging feature. With an Author Tag, Facebook can link shared articles directly to the author\u2019s Facebook profile.<\/p>\n<p>Although not a new feature, the Author Tag now shows the author\u2019s name and provides a link back to their profile, enhancing visibility.<\/p>\n<p>This is particularly beneficial for news sites or blogs with multiple authors, as it helps to boost the credibility of journalists, writers, and bloggers on Facebook. Let\u2019s explore how to integrate Author Tagging into your WordPress site.<\/p>\n<h2>Step 1: Theme Coding<\/h2>\n<p>Firstly, add an extra input field in the <strong>Profile Edit<\/strong> screen for authors to enter their Facebook profile URL.<\/p>\n<p>Open the <strong>functions.php<\/strong> file of your theme and insert the following code:<\/p>\n<pre>\r\nfunction facebook_profile_url($profile_fields) {\r\n    $profile_fields['facebook_url'] = 'Facebook URL';\r\n    return $profile_fields;\r\n}\r\nadd_filter('user_contactmethods', 'facebook_profile_url');\r\n<\/pre>\n<p>This code snippet adds a new field under \u201cContact Info\u201d. Simply enter the Facebook URL, for example, <code>https:\/\/www.facebook.com\/zuck<\/code>, and save the changes.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/facebook-author-tag-wordpress\/facebook-url-input.jpg\" alt=\"Facebook URL input field in WordPress\" height=\"420\" width=\"700\"><\/figure>\n<p>Next, we need to output the URL in the <code>head<\/code> section of the theme. Add this code to the <strong>functions.php<\/strong> file:<\/p>\n<pre>\r\nfunction facebook_author_tag() {\r\n    if (is_single()) {\r\n        global $post;\r\n        $author = (int) $post->post_author;\r\n        $facebook_url = get_the_author_meta('facebook_url', $author);\r\n        if (!empty($facebook_url)) {\r\n            echo '&lt;meta property=\"article:author\" content=\"'. $facebook_url .'\" \/&gt;';\r\n        }\r\n    }\r\n}\r\nadd_action('wp_head', 'facebook_author_tag', 8);\r\n<\/pre>\n<p>This code retrieves the Facebook URL and inserts it into the <code>article:author<\/code> meta tag, adhering to Facebook\u2019s Open Graph specifications. It ensures the tag is only generated on individual post pages and checks if the URL is provided before outputting the meta tag. Refresh your post page to see the new tag in the <code>head<\/code> section.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/facebook-author-tag-wordpress\/facebook-meta-author-output.jpg\" alt=\"Facebook meta author output in WordPress\" height=\"320\" width=\"700\"><\/figure>\n<h2>Step 2: Using a Plugin<\/h2>\n<p>If manual coding isn\u2019t your thing, a plugin can handle everything for you. <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/wordpress-seo\/\">Yoast SEO<\/a> is a great choice for optimizing your site for search engines and social networks like Facebook. After installation, you\u2019ll find a new \u201cFacebook Profile URL\u201d field in your profile editor.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/facebook-author-tag-wordpress\/facebook-url-input-yoast.jpg\" alt=\"Yoast SEO Facebook URL input\" height=\"420\" width=\"700\"><\/figure>\n<p>Simply enter your Facebook URL, save the changes, and you\u2019re all set. There\u2019s no need to modify your theme \u2013 the plugin takes care of it for you.<\/p>\n<p>Whichever method you choose, your articles will now be tagged with the author\u2019s name. If your site has multiple contributors, encourage them to add their Facebook URLs. This ensures accurate linking to their profiles.<\/p>\n<p>We hope you find this guide helpful!<\/p>\n<p><strong>Note:<\/strong> This post was first published on the Aug 25, 2015.<\/p>","protected":false},"excerpt":{"rendered":"<p>Facebook offers various tools to enhance engagement across its network, including the Comment, Likebox, and the popular Like button. Additionally, it has recently enhanced its Author Tagging feature. With an Author Tag, Facebook can link shared articles directly to the author\u2019s Facebook profile. Although not a new feature, the Author Tag now shows the author\u2019s&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,252],"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 Easily Add Facebook Authorship in WordPress - Hongkiat<\/title>\n<meta name=\"description\" content=\"Facebook offers various tools to enhance engagement across its network, including the Comment, Likebox, and the popular Like button. Additionally, it has\" \/>\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\/facebook-author-tag-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Easily Add Facebook Authorship in WordPress\" \/>\n<meta property=\"og:description\" content=\"Facebook offers various tools to enhance engagement across its network, including the Comment, Likebox, and the popular Like button. Additionally, it has\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/\" \/>\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=\"2015-08-25T13:01:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-27T14:48:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/facebook-author-tag-wordpress\/facebook-url-input.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\\\/facebook-author-tag-wordpress\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"How to Easily Add Facebook Authorship in WordPress\",\"datePublished\":\"2015-08-25T13:01:28+00:00\",\"dateModified\":\"2024-05-27T14:48:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/\"},\"wordCount\":369,\"commentCount\":9,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/facebook-author-tag-wordpress\\\/facebook-url-input.jpg\",\"keywords\":[\"ad-divi\",\"WordPress Tips\"],\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/\",\"name\":\"How to Easily Add Facebook Authorship in WordPress - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/facebook-author-tag-wordpress\\\/facebook-url-input.jpg\",\"datePublished\":\"2015-08-25T13:01:28+00:00\",\"dateModified\":\"2024-05-27T14:48:00+00:00\",\"description\":\"Facebook offers various tools to enhance engagement across its network, including the Comment, Likebox, and the popular Like button. Additionally, it has\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/facebook-author-tag-wordpress\\\/facebook-url-input.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/facebook-author-tag-wordpress\\\/facebook-url-input.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/facebook-author-tag-wordpress\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Easily Add Facebook Authorship in WordPress\"}]},{\"@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 Easily Add Facebook Authorship in WordPress - Hongkiat","description":"Facebook offers various tools to enhance engagement across its network, including the Comment, Likebox, and the popular Like button. Additionally, it has","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\/facebook-author-tag-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How to Easily Add Facebook Authorship in WordPress","og_description":"Facebook offers various tools to enhance engagement across its network, including the Comment, Likebox, and the popular Like button. Additionally, it has","og_url":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2015-08-25T13:01:28+00:00","article_modified_time":"2024-05-27T14:48:00+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/facebook-author-tag-wordpress\/facebook-url-input.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\/facebook-author-tag-wordpress\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"How to Easily Add Facebook Authorship in WordPress","datePublished":"2015-08-25T13:01:28+00:00","dateModified":"2024-05-27T14:48:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/"},"wordCount":369,"commentCount":9,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/facebook-author-tag-wordpress\/facebook-url-input.jpg","keywords":["ad-divi","WordPress Tips"],"articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/","url":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/","name":"How to Easily Add Facebook Authorship in WordPress - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/facebook-author-tag-wordpress\/facebook-url-input.jpg","datePublished":"2015-08-25T13:01:28+00:00","dateModified":"2024-05-27T14:48:00+00:00","description":"Facebook offers various tools to enhance engagement across its network, including the Comment, Likebox, and the popular Like button. Additionally, it has","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/facebook-author-tag-wordpress\/facebook-url-input.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/facebook-author-tag-wordpress\/facebook-url-input.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/facebook-author-tag-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Easily Add Facebook Authorship in WordPress"}]},{"@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-6nH","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/24533","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=24533"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/24533\/revisions"}],"predecessor-version":[{"id":72029,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/24533\/revisions\/72029"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=24533"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=24533"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=24533"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=24533"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}