{"id":271,"date":"2021-12-21T12:42:50","date_gmt":"2021-12-21T07:12:50","guid":{"rendered":"https:\/\/hostkicker.com\/blog\/?p=271"},"modified":"2022-05-19T15:51:33","modified_gmt":"2022-05-19T10:21:33","slug":"display-search-term-and-result-counts-in-wordpress","status":"publish","type":"post","link":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/","title":{"rendered":"How To Display Search Term And Result counts in WordPress"},"content":{"rendered":"<p><span data-preserver-spaces=\"true\">This article talks about How To Display Search Term And Result counts in WordPress. While working In WordPress, some of you may want to display the number of results for the search term. You have to add a simple function on your search page to display the search term and the result count.<\/span><\/p>\n<p>Manually you can generate codes for everything you want. The best thing about coding is that it does not put extra load on your website to place the code. Unlike the plugins, which function as well, it puts a burden on your website.<\/p>\n<h3><span data-preserver-spaces=\"true\">Some Plus Points of showing search term and result count\u00a0<\/span><\/h3>\n<p><span data-preserver-spaces=\"true\">The advantage of showing the search term with a result count is that it will give the search term details to the visitors about how many posts are on your website for a particular topic.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\"> The more options visitors get on your particular site, the more the chances of staying on your site. Moreover, it will engage the visitors to your site and help to enhance your SEO ranking.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-272\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/Screenshot-13.png\" alt=\"\" width=\"723\" height=\"324\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/Screenshot-13.png 723w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/Screenshot-13-300x134.png 300w\" sizes=\"auto, (max-width: 723px) 100vw, 723px\" \/><\/p>\n<p><span data-preserver-spaces=\"true\">You can do this by using codes.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Now, Open your <\/span><em><span data-preserver-spaces=\"true\">search.php<\/span><\/em><span data-preserver-spaces=\"true\">\u00a0file in your theme option and place the following code:<\/span><\/p>\n<pre><code class=\"php plain\">&lt;h2 <\/code><code class=\"php keyword\">class<\/code><code class=\"php plain\">=<\/code><code class=\"php string\">&quot;pagetitle&quot;<\/code><code class=\"php plain\">&gt;Search Result <\/code><code class=\"php keyword\">for<\/code> <code class=\"php plain\">&lt;?php <\/code><code class=\"php comments\">\/* Search Count *\/<\/code> <code class=\"php variable\">$allsearch<\/code> <code class=\"php plain\">= <\/code><code class=\"php keyword\">new<\/code> <code class=\"php plain\">WP_Query(<\/code><code class=\"php string\">&quot;s=$s&amp;showposts=-1&quot;<\/code><code class=\"php plain\">); <\/code><code class=\"php variable\">$key<\/code> <code class=\"php plain\">= wp_specialchars(<\/code><code class=\"php variable\">$s<\/code><code class=\"php plain\">, 1); <\/code><code class=\"php variable\">$count<\/code> <code class=\"php plain\">= <\/code><code class=\"php variable\">$allsearch<\/code><code class=\"php plain\">-&gt;post_count; _e(<\/code><code class=\"php string\">&#039;&#039;<\/code><code class=\"php plain\">); _e(<\/code><code class=\"php string\">&#039;&lt;span class=&quot;search-terms&quot;&gt;&#039;<\/code><code class=\"php plain\">); <\/code><code class=\"php functions\">echo<\/code> <code class=\"php variable\">$key<\/code><code class=\"php plain\">; _e(<\/code><code class=\"php string\">&#039;&lt;\/span&gt;&#039;<\/code><code class=\"php plain\">); _e(<\/code><code class=\"php string\">&#039; &amp;mdash; &#039;<\/code><code class=\"php plain\">); <\/code><code class=\"php functions\">echo<\/code> <code class=\"php variable\">$count<\/code> <code class=\"php plain\">. <\/code><code class=\"php string\">&#039; &#039;<\/code><code class=\"php plain\">; _e(<\/code><code class=\"php string\">&#039;articles&#039;<\/code><code class=\"php plain\">); wp_reset_query(); ?&gt;&lt;\/h2&gt;<\/code><\/pre>\n<p><span data-preserver-spaces=\"true\">The code will display something like this:<\/span><\/p>\n<p><strong>Search Result for WordPress Plugin \u2014 10 articles<\/strong><\/p>\n<p><span data-preserver-spaces=\"true\">Also, You can highlight the search term by adding the .search-terms CSS class to your theme\u2019s stylesheet. Below is a simple CSS for you.<\/span><\/p>\n<pre><strong> .search-terms {\r\n\r\nbackground-color:yellow;\r\n\r\ncolor:blue;\r\n\r\n}<\/strong><\/pre>\n<p><span data-preserver-spaces=\"true\"><strong>To conclude<\/strong>, This was the simple and easy code you can use to display the search term and result count in WordPress.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\"> In this section, we have also mentioned how you can highlight the search term, which helps to grab attention readily. Showing the search term with the result count benefits the visitors as they know about the total articles on a particular topic.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">We hope this has helped you well.<\/span><\/p>\n<p>You can check our another article on <a href=\"https:\/\/hostkicker.com\/blog\/how-to-display-accurate-comment-count-on-wordpress\/\">how to display the most accurate comment count on WordPress.<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article talks about How To Display Search Term And Result counts in WordPress. While working In WordPress, some of you may want to display the number of results for the search term. You have to add a simple function on your search page to display the search term and the result count. Manually you [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":309,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-271","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wp-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v19.3 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Display Search Term And Result counts in WordPress<\/title>\n<meta name=\"description\" content=\"This article explains How To Display Search Term And Result counts in WordPress. you can use simple code on your search page.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-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 Display Search Term And Result counts in WordPress\" \/>\n<meta property=\"og:description\" content=\"This article explains How To Display Search Term And Result counts in WordPress. you can use simple code on your search page.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"Hostkicker\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-21T07:12:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-19T10:21:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/MicrosoftTeams-image-5.png\" \/>\n\t<meta property=\"og:image:width\" content=\"693\" \/>\n\t<meta property=\"og:image:height\" content=\"511\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Olivia Smith\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Olivia Smith\" \/>\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:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/\"},\"author\":{\"name\":\"Olivia Smith\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/person\\\/f06306b595baa96c90a0491b941d7660\"},\"headline\":\"How To Display Search Term And Result counts in WordPress\",\"datePublished\":\"2021-12-21T07:12:50+00:00\",\"dateModified\":\"2022-05-19T10:21:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/\"},\"wordCount\":333,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/MicrosoftTeams-image-5.png\",\"articleSection\":[\"Wp tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/\",\"name\":\"How To Display Search Term And Result counts in WordPress\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/MicrosoftTeams-image-5.png\",\"datePublished\":\"2021-12-21T07:12:50+00:00\",\"dateModified\":\"2022-05-19T10:21:33+00:00\",\"description\":\"This article explains How To Display Search Term And Result counts in WordPress. you can use simple code on your search page.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/#primaryimage\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/MicrosoftTeams-image-5.png\",\"contentUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/MicrosoftTeams-image-5.png\",\"width\":693,\"height\":511,\"caption\":\"How To Display Search Term And Result counts in WordPress\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/display-search-term-and-result-counts-in-wordpress\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Display Search Term And Result counts in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/\",\"name\":\"Hostkicker\",\"description\":\"Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#organization\",\"name\":\"Hostkicker\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-logo-01.png\",\"contentUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-logo-01.png\",\"width\":940,\"height\":218,\"caption\":\"Hostkicker\"},\"image\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/person\\\/f06306b595baa96c90a0491b941d7660\",\"name\":\"Olivia Smith\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g\",\"caption\":\"Olivia Smith\"},\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/author\\\/olivia\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Display Search Term And Result counts in WordPress","description":"This article explains How To Display Search Term And Result counts in WordPress. you can use simple code on your search page.","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:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How To Display Search Term And Result counts in WordPress","og_description":"This article explains How To Display Search Term And Result counts in WordPress. you can use simple code on your search page.","og_url":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/","og_site_name":"Hostkicker","article_published_time":"2021-12-21T07:12:50+00:00","article_modified_time":"2022-05-19T10:21:33+00:00","og_image":[{"width":693,"height":511,"url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/MicrosoftTeams-image-5.png","type":"image\/png"}],"author":"Olivia Smith","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Olivia Smith","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/#article","isPartOf":{"@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/"},"author":{"name":"Olivia Smith","@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/person\/f06306b595baa96c90a0491b941d7660"},"headline":"How To Display Search Term And Result counts in WordPress","datePublished":"2021-12-21T07:12:50+00:00","dateModified":"2022-05-19T10:21:33+00:00","mainEntityOfPage":{"@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/"},"wordCount":333,"commentCount":0,"publisher":{"@id":"https:\/\/hostkicker.com\/blog\/#organization"},"image":{"@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/MicrosoftTeams-image-5.png","articleSection":["Wp tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/","url":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/","name":"How To Display Search Term And Result counts in WordPress","isPartOf":{"@id":"https:\/\/hostkicker.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/MicrosoftTeams-image-5.png","datePublished":"2021-12-21T07:12:50+00:00","dateModified":"2022-05-19T10:21:33+00:00","description":"This article explains How To Display Search Term And Result counts in WordPress. you can use simple code on your search page.","breadcrumb":{"@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/#primaryimage","url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/MicrosoftTeams-image-5.png","contentUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/MicrosoftTeams-image-5.png","width":693,"height":511,"caption":"How To Display Search Term And Result counts in WordPress"},{"@type":"BreadcrumbList","@id":"https:\/\/hostkicker.com\/blog\/display-search-term-and-result-counts-in-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hostkicker.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Display Search Term And Result counts in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/hostkicker.com\/blog\/#website","url":"https:\/\/hostkicker.com\/blog\/","name":"Hostkicker","description":"Blog","publisher":{"@id":"https:\/\/hostkicker.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hostkicker.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hostkicker.com\/blog\/#organization","name":"Hostkicker","url":"https:\/\/hostkicker.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-logo-01.png","contentUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-logo-01.png","width":940,"height":218,"caption":"Hostkicker"},"image":{"@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/person\/f06306b595baa96c90a0491b941d7660","name":"Olivia Smith","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g","caption":"Olivia Smith"},"url":"https:\/\/hostkicker.com\/blog\/author\/olivia\/"}]}},"jetpack_featured_media_url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/MicrosoftTeams-image-5.png","_links":{"self":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts\/271","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/comments?post=271"}],"version-history":[{"count":10,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts\/271\/revisions"}],"predecessor-version":[{"id":2041,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts\/271\/revisions\/2041"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/media\/309"}],"wp:attachment":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/media?parent=271"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/categories?post=271"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/tags?post=271"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}