{"id":3260,"date":"2014-05-30T11:16:23","date_gmt":"2014-05-30T11:16:23","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2014\/05\/30\/increase-hits-cache\/"},"modified":"2021-08-16T23:01:31","modified_gmt":"2021-08-17T03:01:31","slug":"increase-hits-cache","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/","title":{"rendered":"Updating article hits when using Joomla cache"},"content":{"rendered":"<p><strong>Enable cache, and disable hits<\/strong><br \/>\nWhen you <a href=\"https:\/\/docs.joomla.org\/Cache\" target=\"_blank\" rel=\"noopener noreferrer\">enable caching in Joomla<\/a>, <a href=\"https:\/\/forum.joomla.org\/viewtopic.php?f=616&amp;t=771951\" target=\"_blank\" rel=\"noopener noreferrer\">article hits do not increase when cached pages are served<\/a>. This is unfortunately a limitation of the caching system in Joomla, there is not &#8220;toggle switch&#8221; to enable this feature.<\/p>\n<p><strong>Hits not always accurate, but sometimes needed<\/strong><br \/>\nFor those users needing this feature, it&#8217;s usually recommended that they instead switch to a more accurate tracking system, like <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/installing-google-analytics-on-your-website\/\">Google Analytics<\/a>. This though is an alternative, and doesn&#8217;t actually present a solution to the problem at hand. Even though not 100% accurate, sometimes article hits are necessary, such as the scenario when you need to order articles based upon their popularity.<\/p>\n<p><strong>We created a solution<\/strong><br \/>\nThe article that you&#8217;re reading right now is within InMotion Hosting&#8217;s Support Center, and is served using Joomla. We have enabled caching in Joomla, and ourselves needed the hits on articles to increase. In this tutorial, we will outline the steps we&#8217;ve taken to have Joomla increase article hits event when a cached page is served.<\/p>\n<ol class=\"article_list\">\n<li><strong>Disable article hits<\/strong>\n<p>I know it sounds funny, but the first step in this entire process is to disable article hits. The solution we are implementing will use ajax to increase article hits. We don&#8217;t want Joomla to increase hits at the same time our ajax call is increasing hits, this would result in double hits.<\/p>\n<p>Edit the following file and add the code highlighted in red below:<\/p>\n<p class=\"white_box\">components\/com_content\/models\/article.php<\/p>\n<pre class=\"code_block\">public function hit($pk = 0)   {     <span style=\"color: red;\">return true;<\/span>     $input = JFactory::getApplication()-&gt;input;     $hitcount = $input-&gt;getInt('hitcount', 1);      if ($hitcount)     {       $pk = (!empty($pk)) ? $pk : (int) $this-&gt;getState('article.id');        $table = JTable::getInstance('Content', 'JTable');       $table-&gt;load($pk);       $table-&gt;hit($pk);     }      return true;   }<\/pre>\n<p class=\"alert alert-danger\"><strong>Core file change!<\/strong><br \/>\nThis step edits a core file, which is not recommended. You can skip this step, however this will result in hits increasing by 2 (instead of 1) when cache is not used to server a page.<\/p>\n<\/li>\n<li><strong>Enclose your hit count within a span tag<\/strong>\n<p>After using ajax to make a call to increase article hits, we will update the current hit counter on the page so that it is accurate. We will use javascript for this, and javascript needs to know where on the page the hits are showing. We label the article hit counts by wrapping it within a span tag.<\/p>\n<p><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/overrides\/\">Create a language override<\/a> and add the changes highlighted in red:<\/p>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th>Language Constant:<\/th>\n<td>COM_CONTENT_ARTICLE_HITS<\/td>\n<\/tr>\n<tr>\n<th>Text<\/th>\n<td>Hits: <span style=\"color: red;\">&lt;span id=&#8221;article_hits&#8221;&gt;<\/span>%s<span style=\"color: red;\">&lt;\/span&gt;<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/li>\n<li><strong>Add the ajax calls to your articles<\/strong>\n<p>Now it&#8217;s time to add the ajax calls to our articles. It&#8217;s this ajax call that makes a request to increase article hits, and will run regardless if the page is being served via cache or not. Edit the following file and add the code highlighted in red at the end of the file:<\/p>\n<p class=\"white_box\">components\/com_content\/views\/article\/tmpl\/default.php<\/p>\n<pre class=\"code_block\" style=\"word-wrap: normal;\">  &lt;?php if (!empty($this-&gt;item-&gt;pagination) &amp;&amp; $this-&gt;item-&gt;pagination &amp;&amp; $this-&gt;item-&gt;paginationposition &amp;&amp; $this-&gt;item-&gt;paginationrelative) :   echo $this-&gt;item-&gt;pagination; ?&gt;   &lt;?php endif; ?&gt;   &lt;?php echo $this-&gt;item-&gt;event-&gt;afterDisplayContent; ?&gt; &lt;\/div&gt;  <span style=\"color: red;\">&lt;script type='text\/javascript'&gt;         jQuery.post(                 '&lt;?php echo JURI::base(); ?&gt;includes\/increase_hits.php',                 {option:'com_content',view:'article',id:'&lt;?php echo $this-&gt;item-&gt;id; ?&gt;'},                 function(data,status){jQuery('#article_hits').html(data);},'text'         ); &lt;\/script&gt;<\/span><\/pre>\n<p class=\"alert alert-danger\"><strong>Core file change!<\/strong><br \/>\nThis step edits a core file, which is not recommended. You should instead <a href=\"https:\/\/docs.joomla.org\/How_to_override_the_output_from_the_Joomla!_core\" target=\"_blank\" rel=\"noopener noreferrer\">add this code to an override<\/a>.<\/p>\n<\/li>\n<li><strong>Create increase_hits.php<\/strong>\n<p>Create the following file. This is the php script that our ajax call will interact with.<\/p>\n<p class=\"white_box\">includes\/increase_hits.php<\/p>\n<pre class=\"code_block\" style=\"word-wrap: normal;\">&lt;?php  \/**  *  Use this script to update article hits when caching is enabled  *  Setup guide can be found here: https:\/\/www.inmotionhosting.com\/support\/edu\/joomla-3\/increase-hits-cache  *\/   if (  $_POST['option'] == \"com_content\"       &amp;&amp; $_POST['view'] == \"article\"       &amp;&amp; is_numeric($_POST['id'])) {   \/\/ connect to the database   include_once(\"..\/configuration.php\");   $cg = new JConfig;   $con = mysqli_connect($cg-&gt;host,$cg-&gt;user,$cg-&gt;password,$cg-&gt;db);   if (mysqli_connect_errno())     die('n\/a');    \/\/ increase hits   $query = \"  UPDATE  `\" . $cg-&gt;dbprefix . \"content`               SET     `hits` = `hits` + 1               WHERE   `id` = \" . $_POST['id'] . \"               LIMIT 1;   \";   mysqli_query($con,$query);    \/\/ grab the new hit count   $query = \"  SELECT  `hits`               FROM    `\" . $cg-&gt;dbprefix . \"content`               WHERE   `id` = \" . $_POST['id'] . \"               LIMIT 1;   \";   $new_hits = mysqli_fetch_assoc(mysqli_query($con,$query));    \/\/ close the connection to the database   mysqli_close($con);    echo $new_hits['hits']; }  ?&gt;<\/pre>\n<\/li>\n<\/ol>\n<p>And that&#8217;s it! It&#8217;s the same approach we&#8217;ve used for our own Joomla site. If you have any problems getting this to work, feel free to post a comment below. Alternatively, post a comment too if you have another method users can implement to increase hits when cache is being used.<\/p>\n<p><a name=\"pankaj\"><\/a><\/p>\n<p style=\"padding-left: 400px;\"><strong>Thanks!<\/strong><br \/>\nA special thanks to <a href=\"https:\/\/plus.google.com\/u\/0\/+PankajSharma21\/posts\" target=\"_blank\" rel=\"noopener noreferrer\">Pankaj<\/a> with <a href=\"https:\/\/www.joomlart.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">joomlart.com<\/a> for the encouragement to write this article.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Enable cache, and disable hits When you enable caching in Joomla, article hits do not increase when cached pages are served. This is unfortunately a limitation of the caching system in Joomla, there is not &#8220;toggle switch&#8221; to enable this feature. Hits not always accurate, but sometimes needed For those users needing this feature, it&#8217;s<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/\"> Read More ><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4403,94,4288],"tags":[4404],"class_list":["post-3260","post","type-post","status-publish","format-standard","hentry","category-joomla","category-joomla-3","category-website","tag-joomla-v3"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Updating article hits when using Joomla cache | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this tutorial we&#039;ll show you how to track article hits when you&#039;re using Joomla&#039;s page cache.\" \/>\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.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Updating article hits when using Joomla cache | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this tutorial we&#039;ll show you how to track article hits when you&#039;re using Joomla&#039;s page cache.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2014-05-30T11:16:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:01:31+00:00\" \/>\n<meta name=\"author\" content=\"Brad Markle\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brad Markle\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/\"},\"author\":{\"name\":\"Brad Markle\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\"},\"headline\":\"Updating article hits when using Joomla cache\",\"datePublished\":\"2014-05-30T11:16:23+00:00\",\"dateModified\":\"2021-08-17T03:01:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/\"},\"wordCount\":575,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"keywords\":[\"Joomla v3\"],\"articleSection\":[\"Joomla\",\"Joomla 3\",\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/\",\"name\":\"Updating article hits when using Joomla cache | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2014-05-30T11:16:23+00:00\",\"dateModified\":\"2021-08-17T03:01:31+00:00\",\"description\":\"In this tutorial we'll show you how to track article hits when you're using Joomla's page cache.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Updating article hits when using Joomla cache\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\",\"name\":\"Brad Markle\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Updating article hits when using Joomla cache | InMotion Hosting","description":"In this tutorial we'll show you how to track article hits when you're using Joomla's page cache.","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.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/","og_locale":"en_US","og_type":"article","og_title":"Updating article hits when using Joomla cache | InMotion Hosting","og_description":"In this tutorial we'll show you how to track article hits when you're using Joomla's page cache.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2014-05-30T11:16:23+00:00","article_modified_time":"2021-08-17T03:01:31+00:00","author":"Brad Markle","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Brad Markle","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/"},"author":{"name":"Brad Markle","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf"},"headline":"Updating article hits when using Joomla cache","datePublished":"2014-05-30T11:16:23+00:00","dateModified":"2021-08-17T03:01:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/"},"wordCount":575,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"keywords":["Joomla v3"],"articleSection":["Joomla","Joomla 3","Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/","name":"Updating article hits when using Joomla cache | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2014-05-30T11:16:23+00:00","dateModified":"2021-08-17T03:01:31+00:00","description":"In this tutorial we'll show you how to track article hits when you're using Joomla's page cache.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/increase-hits-cache\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Updating article hits when using Joomla cache"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf","name":"Brad Markle","url":"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3260","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=3260"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3260\/revisions"}],"predecessor-version":[{"id":84259,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3260\/revisions\/84259"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=3260"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=3260"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=3260"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}