{"id":18865,"date":"2013-12-16T15:01:34","date_gmt":"2013-12-16T07:01:34","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=18865"},"modified":"2025-04-04T01:39:40","modified_gmt":"2025-04-03T17:39:40","slug":"wordpress-admin-color-scheme","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/","title":{"rendered":"Customize WordPress Admin Color Scheme"},"content":{"rendered":"<p>WordPress just got a new upgrade and 3.8 comes with a bunch of new thing to be excited about. One that you will  notice immediately, is that the <strong>WP-Admin <abbr title=\"User Interface\">UI<\/abbr> now has a new look<\/strong>.<\/p>\n<p>This new design, which actually has long been developed under a plugin called <a href=\"https:\/\/wordpress.org\/\/plugins\/mp6\/\" rel=\"nofollow\">MP6<\/a>, is responsive and it clearly embraces the current design trend, Flat Design.<\/p>\n<p>It also introduces 8 new colors: Fresh (set as the default), Light, Blue, Midnight, Coffee, Ectoplasm, Ocean, and Sunrise to spice-up the UI. Let\u2019s get down to exploring and personalizing our now, much more colorful WP-Admin.<\/p>\n<p class=\"note\"><strong>Recommended Reading: <\/strong><a href=\"https:\/\/www.hongkiat.com\/blog\/evolution-of-wordpress\/\">A Look Into WordPress UI Evolution For The Past 10 Years<\/a><\/p>\n<h2>Add New Color Schemes<\/h2>\n<p>Apart from the 8 color options mentioned earlier, you can add more new color schemes with the <a href=\"https:\/\/wordpress.org\/\/plugins\/admin-color-schemes\/\" rel=\"nofollow\">Admin Color Schemes<\/a> plugin. So in total, there are 16 color options to pick from.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-admin-color-scheme\/new-colors.jpg\" alt=\"\" width=\"500\" height=\"320\"><\/p>\n<p>If somehow you do not want to rely on a plugin, you can add this code in the <strong>functions.php<\/strong> file of your theme to register a new color scheme. Make sure that you have already put the stylesheet of the admin color scheme in the right folder.<\/p>\n<pre>\r\nfunction additional_admin_color_schemes() {\r\n\t\/\/Get the theme directory\r\n\t$theme_dir = get_template_directory_uri();\r\n\r\n\t\/\/Ocean\r\n\twp_admin_css_color( 'ocean', __( 'Ocean' ),\r\n\t\t$theme_dir . '\/admin-colors\/ocean\/colors.min.css',\r\n\t\tarray( '#aa9d88', '#9ebaa0', '#738e96', '#f2fcff' )\r\n\t);\r\n}\r\nadd_action('admin_init', 'additional_admin_color_schemes');\r\n<\/pre>\n<h2>Set New Default Color<\/h2>\n<p>WordPress set <strong>Fresh<\/strong> as the default admin color but as we have added new colors, let\u2019s try to make <strong>Flat <\/strong>the default instead.<\/p>\n<p>The bad news is, there isn\u2019t a straightforward or a standard function to overwrite the default <em>WP-Admin<\/em> color-scheme. But, we have a trick to achieve this idea.<\/p>\n<p>We will use <code>user_register<\/code> <a href=\"https:\/\/codex.wordpress.org\/Plugin_API\/Action_Reference\" rel=\"nofollow\">Action Hook<\/a> along with <code>wp_update_user<\/code> to change\/update the admin color of newly registered users, like so.<\/p>\n<pre>\r\nfunction set_default_admin_color($user_id) {\r\n\t$args = array(\r\n\t\t'ID' => $user_id,\r\n\t\t'admin_color' => 'flat'\r\n\t);\r\n\twp_update_user( $args );\r\n}\r\nadd_action('user_register', 'set_default_admin_color');\r\n<\/pre>\n<p>As stated in this <a href=\"https:\/\/codex.wordpress.org\/Plugin_API\/Action_Reference\/user_register\" rel=\"nofollow\">documentation<\/a>, the <code>user_register<\/code> <q>allows developer to access data for a new user <strong>immediately<\/strong> after they are added to the database.<\/q>.<\/p>\n<h2>Rename The \"Default\" Label<\/h2>\n<p>However, our problem now is that Fresh is still labeled as \u201cDefault\u201d. So let\u2019s change the label to Fresh with this code below.<\/p>\n<pre>\r\nfunction rename_fresh_color_scheme() {\r\n\tglobal $_wp_admin_css_colors;\r\n\t$color_name = $_wp_admin_css_colors['fresh']->name;\r\n\r\n\tif( $color_name == 'Default' ) {\r\n\t\t$_wp_admin_css_colors['fresh']->name = 'Fresh';\r\n\t}\r\n\treturn $_wp_admin_css_colors;\r\n}\r\nadd_filter('admin_init', 'rename_fresh_color_scheme');\r\n<\/pre>\n<p>That\u2019s all the codes we need. Now, you can try these tips by creating a new user. If you have got some troubles, feel free to ask about it in the comment box below.<\/p>","protected":false},"excerpt":{"rendered":"<p>WordPress just got a new upgrade and 3.8 comes with a bunch of new thing to be excited about. One that you will notice immediately, is that the WP-Admin UI now has a new look. This new design, which actually has long been developed under a plugin called MP6, is responsive and it clearly embraces&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.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Customize WordPress Admin Color Scheme - Hongkiat<\/title>\n<meta name=\"description\" content=\"WordPress just got a new upgrade and 3.8 comes with a bunch of new thing to be excited about. One that you will notice immediately, is that the WP-Admin\" \/>\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-admin-color-scheme\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Customize WordPress Admin Color Scheme\" \/>\n<meta property=\"og:description\" content=\"WordPress just got a new upgrade and 3.8 comes with a bunch of new thing to be excited about. One that you will notice immediately, is that the WP-Admin\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/\" \/>\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=\"2013-12-16T07:01:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-03T17:39:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-admin-color-scheme\/new-colors.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=\"2 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-admin-color-scheme\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"Customize WordPress Admin Color Scheme\",\"datePublished\":\"2013-12-16T07:01:34+00:00\",\"dateModified\":\"2025-04-03T17:39:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/\"},\"wordCount\":358,\"commentCount\":13,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-admin-color-scheme\\\/new-colors.jpg\",\"keywords\":[\"ad-divi\",\"wordpress admin\"],\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/\",\"name\":\"Customize WordPress Admin Color Scheme - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-admin-color-scheme\\\/new-colors.jpg\",\"datePublished\":\"2013-12-16T07:01:34+00:00\",\"dateModified\":\"2025-04-03T17:39:40+00:00\",\"description\":\"WordPress just got a new upgrade and 3.8 comes with a bunch of new thing to be excited about. One that you will notice immediately, is that the WP-Admin\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-admin-color-scheme\\\/new-colors.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-admin-color-scheme\\\/new-colors.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-admin-color-scheme\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Customize WordPress Admin Color Scheme\"}]},{\"@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":"Customize WordPress Admin Color Scheme - Hongkiat","description":"WordPress just got a new upgrade and 3.8 comes with a bunch of new thing to be excited about. One that you will notice immediately, is that the WP-Admin","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-admin-color-scheme\/","og_locale":"en_US","og_type":"article","og_title":"Customize WordPress Admin Color Scheme","og_description":"WordPress just got a new upgrade and 3.8 comes with a bunch of new thing to be excited about. One that you will notice immediately, is that the WP-Admin","og_url":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2013-12-16T07:01:34+00:00","article_modified_time":"2025-04-03T17:39:40+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-admin-color-scheme\/new-colors.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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"Customize WordPress Admin Color Scheme","datePublished":"2013-12-16T07:01:34+00:00","dateModified":"2025-04-03T17:39:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/"},"wordCount":358,"commentCount":13,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-admin-color-scheme\/new-colors.jpg","keywords":["ad-divi","wordpress admin"],"articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/","url":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/","name":"Customize WordPress Admin Color Scheme - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-admin-color-scheme\/new-colors.jpg","datePublished":"2013-12-16T07:01:34+00:00","dateModified":"2025-04-03T17:39:40+00:00","description":"WordPress just got a new upgrade and 3.8 comes with a bunch of new thing to be excited about. One that you will notice immediately, is that the WP-Admin","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-admin-color-scheme\/new-colors.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-admin-color-scheme\/new-colors.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-admin-color-scheme\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Customize WordPress Admin Color Scheme"}]},{"@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-4Uh","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/18865","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=18865"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/18865\/revisions"}],"predecessor-version":[{"id":73644,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/18865\/revisions\/73644"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=18865"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=18865"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=18865"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=18865"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}