{"id":18819,"date":"2013-12-10T15:01:30","date_gmt":"2013-12-10T07:01:30","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=18819"},"modified":"2025-04-04T01:39:17","modified_gmt":"2025-04-03T17:39:17","slug":"wordpress-featured-content","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/","title":{"rendered":"How to Display &#8220;Featured Content&#8221; in WordPress"},"content":{"rendered":"<p>You probably have stories in your blog you want to highlight to your readers. This is commonly referred to as \u201cFeatured Posts\u201d or \u201cFeatured Content.\u201d If you are using WordPress, displaying these featured posts can be achieved in various ways, one of which is using a plugin like Jetpack.<\/p>\n<p><strong><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jetpack.com\/\">Jetpack<\/a><\/strong> includes features found on WordPress.com. At the time of writing, it offers 30 features including WordPress.com Stats, Photon, <a href=\"https:\/\/www.hongkiat.com\/blog\/wordpress-infinite-scroll\/\">Infinite Scroll<\/a>, and our focus today, <strong>Featured Content<\/strong>. Let\u2019s get started.<\/p>\n<h2>Add theme support<\/h2>\n<p><strong>Update:<\/strong> As of Jetpack 3.7, you can find the Featured Content under Appearance &gt; Customize Menu.<\/p>\n<p>The first thing you need to do is add the <code>add_theme_support<\/code> function in <strong>functions.php<\/strong> of your theme.<\/p>\n<pre>\r\nadd_theme_support( 'featured-content', array(\r\n    'featured_content_filter' => 'mytheme_get_featured_content',\r\n));\r\n<\/pre>\n<p>After adding it, you will find a new form, Featured Content, under the <strong>Settings &gt; Reading<\/strong> page.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-featured-content\/add-theme-support.jpg\" alt=\"Adding theme support in WordPress\" width=\"500\" height=\"170\"><\/figure>\n<p>Specify the tag name for your featured content, set the number of posts you want to show, and tick the checkbox to prevent the tag from appearing on your blog. Assign the posts you want marked as <strong>Featured<\/strong> with the tag.<\/p>\n<h2>Displaying the Content<\/h2>\n<p>We will add a few lines of code to display the featured content in our theme. As an example in this tutorial, I\u2019m going to use <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/wordpress.org\/themes\/twentytwelve\">TwentyTwelve<\/a>.<\/p>\n<p>Usually, the featured content is displayed on the front page. If your theme follows the WordPress standard theme structure, the front page is rendered either in <strong>index.php<\/strong>, <strong>home.php<\/strong>, or <strong>front-page.php<\/strong>.<\/p>\n<p>Open <strong>functions.php<\/strong>, and add the following function to get the featured posts and put them in an array.<\/p>\n<pre>\r\nfunction twentytwelve_get_featured_content() {\r\n    apply_filters( 'twentytwelve_featured_content', array() );\r\n}\r\n<\/pre>\n<p>We can further extend that code, like so.<\/p>\n<pre>\r\nfunction twentytwelve_get_featured_content( $num = 1 ) {\r\n    global $featured;\r\n    $featured = apply_filters( 'twentytwelve_featured_content', array() );\r\n    \r\n    if ( is_array( $featured ) || $num >= count( $featured ) )\r\n        return true;\r\n    \r\n    return false;\r\n}\r\n<\/pre>\n<p>The above conditional statement will show the featured content if at least there is one present and while the page is not being <em>paged<\/em> (it is not on the second page onwards).<\/p>\n<p>Additionally, we can also set a new thumbnail size for the featured content. In this example, I created a new size, which is 250 by 160 pixels. You can add the following code somewhere below the <code>add_theme_support( 'post-thumbnail' )<\/code>.<\/p>\n<pre>\r\nadd_theme_support( 'post-thumbnails' );\r\nadd_image_size( 'twentytwelve-featured-thumb', 250, 160, true );\r\n<\/pre>\n<p>Next, let\u2019s create a new template called <strong>featured.php<\/strong>, and add this code below to put the featured content in a proper HTML structure.<\/p>\n<pre>\r\n&lt;div class=\"featured-post clearfix\"&gt;\r\n    &lt;figure class=\"post-thumbnail\"&gt;\r\n        &lt;?php if ( has_post_thumbnail() ) { the_post_thumbnail('twentytwelve-featured-thumb'); } ?&gt;\r\n    &lt;\/figure&gt;\r\n    &lt;div class=\"post-entry\"&gt;\r\n        &lt;h3 class=\"post-title\"&gt;&lt;a href=\"&lt;?php the_permalink(); ?&gt;\" title=\"&lt;?php the_title(); ?&gt;\"&gt;&lt;?php the_title(); ?&gt;&lt;\/a&gt;&lt;\/h3&gt;\r\n        &lt;?php the_excerpt(); ?&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>In the <strong>index.php<\/strong>, we call that template by using <code>get_template_part()<\/code> and put it in the loop like so:<\/p>\n<pre>\r\n&lt;?php if ( twentytwelve_get_featured_content(1) ) : ?&gt;\r\n    &lt;div id=\"featured\"&gt;\r\n        &lt;h2&gt;&lt;?php _e( 'Featured Content', 'twentytwelve' ); ?&gt;&lt;\/h2&gt;\r\n        &lt;?php foreach ( $featured as $post ) : setup_postdata( $post ); ?&gt;\r\n            &lt;?php get_template_part( 'featured', get_post_format() ); ?&gt;\r\n        &lt;?php endforeach; ?&gt;\r\n    &lt;\/div&gt;\r\n&lt;?php endif; ?&gt;\r\n<\/pre>\n<p>At this stage, we are technically done, and after adding some CSS, we will have a nice little section of featured content.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-featured-content\/final-result.jpg\" alt=\"final result of featured content section\" height=\"300\" width=\"500\"><\/figure>\n<p>We hope this tutorial will be useful for you, and if you are having trouble following the tutorial, feel free to let us know in the comments.<\/p>\n<p><strong>Note:<\/strong> This post was first published on the  Dec 10, 2013.<\/p>","protected":false},"excerpt":{"rendered":"<p>You probably have stories in your blog you want to highlight to your readers. This is commonly referred to as \u201cFeatured Posts\u201d or \u201cFeatured Content.\u201d If you are using WordPress, displaying these featured posts can be achieved in various ways, one of which is using a plugin like Jetpack. Jetpack includes features found on WordPress.com.&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],"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>How to Display &quot;Featured Content&quot; in WordPress - Hongkiat<\/title>\n<meta name=\"description\" content=\"You probably have stories in your blog you want to highlight to your readers. This is commonly referred to as &quot;Featured Posts&quot; or &quot;Featured Content.&quot; If\" \/>\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-featured-content\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Display &quot;Featured Content&quot; in WordPress\" \/>\n<meta property=\"og:description\" content=\"You probably have stories in your blog you want to highlight to your readers. This is commonly referred to as &quot;Featured Posts&quot; or &quot;Featured Content.&quot; If\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/\" \/>\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-10T07:01:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-03T17:39:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-featured-content\/add-theme-support.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-featured-content\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"How to Display &#8220;Featured Content&#8221; in WordPress\",\"datePublished\":\"2013-12-10T07:01:30+00:00\",\"dateModified\":\"2025-04-03T17:39:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/\"},\"wordCount\":439,\"commentCount\":18,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-featured-content\\\/add-theme-support.jpg\",\"keywords\":[\"ad-divi\"],\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/\",\"name\":\"How to Display \\\"Featured Content\\\" in WordPress - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-featured-content\\\/add-theme-support.jpg\",\"datePublished\":\"2013-12-10T07:01:30+00:00\",\"dateModified\":\"2025-04-03T17:39:17+00:00\",\"description\":\"You probably have stories in your blog you want to highlight to your readers. This is commonly referred to as \\\"Featured Posts\\\" or \\\"Featured Content.\\\" If\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-featured-content\\\/add-theme-support.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-featured-content\\\/add-theme-support.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-featured-content\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Display &#8220;Featured Content&#8221; 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 Display \"Featured Content\" in WordPress - Hongkiat","description":"You probably have stories in your blog you want to highlight to your readers. This is commonly referred to as \"Featured Posts\" or \"Featured Content.\" If","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-featured-content\/","og_locale":"en_US","og_type":"article","og_title":"How to Display \"Featured Content\" in WordPress","og_description":"You probably have stories in your blog you want to highlight to your readers. This is commonly referred to as \"Featured Posts\" or \"Featured Content.\" If","og_url":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2013-12-10T07:01:30+00:00","article_modified_time":"2025-04-03T17:39:17+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-featured-content\/add-theme-support.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-featured-content\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"How to Display &#8220;Featured Content&#8221; in WordPress","datePublished":"2013-12-10T07:01:30+00:00","dateModified":"2025-04-03T17:39:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/"},"wordCount":439,"commentCount":18,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-featured-content\/add-theme-support.jpg","keywords":["ad-divi"],"articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/","url":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/","name":"How to Display \"Featured Content\" in WordPress - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-featured-content\/add-theme-support.jpg","datePublished":"2013-12-10T07:01:30+00:00","dateModified":"2025-04-03T17:39:17+00:00","description":"You probably have stories in your blog you want to highlight to your readers. This is commonly referred to as \"Featured Posts\" or \"Featured Content.\" If","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-featured-content\/add-theme-support.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-featured-content\/add-theme-support.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-featured-content\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Display &#8220;Featured Content&#8221; 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-4Tx","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/18819","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=18819"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/18819\/revisions"}],"predecessor-version":[{"id":73641,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/18819\/revisions\/73641"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=18819"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=18819"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=18819"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=18819"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}