{"id":2217,"date":"2013-01-31T17:11:24","date_gmt":"2013-01-31T17:11:24","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/31\/enable-recaptcha-media\/"},"modified":"2021-08-16T23:21:51","modified_gmt":"2021-08-17T03:21:51","slug":"enable-recaptcha-media","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/","title":{"rendered":"How to enable  reCAPTCHA in MediaWiki"},"content":{"rendered":"<p>To prevent spam bots and robots from filling your MediaWiki pages with spam links and unwanted content, you can have the \u201c<em>reCAPTCHA<\/em>\u201d enabled in your MediaWiki <em>LocalSettings.php<\/em> to prevent bots from editing your pages. ReCAPTCHA is a free service from Google that allows you to add a verification box to determine if the page is being edited by a human or not. ReCAPTCHA uses a public and private key to create different words required for the image. Form pre information on reCAPTCHA please see our article on <a href=\"\/support\/website\/google-tools\/public-private-key-google-recaptcha\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to get the public and private keys for Google reCAPTCHA<\/a>.<\/p>\n<h3>Adding reCAPTCHA to your WIKI edit sections<\/h3>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/edu\/cpanel\/how-to-log-into-cpanel\/\" target=\"_blank\" title=\"Click here for info\" rel=\"noopener noreferrer\">Login into your cPanel<\/a>.<\/li>\n<li><a href=\"\/support\/edu\/cpanel\/using-file-manager-in-cpanel\/\" target=\"_blank\" title=\"Click here for info\" rel=\"noopener noreferrer\">Go to the File Manager<\/a>. Select your MediaWiki installation directory and click Go.<\/li>\n<li><strong>Find the LocaSettings.php file<\/strong> and open it with the code editor. <br style=\"clear: both;\"><\/li>\n<li><a href=\"\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"713\" height=\"332\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif\" class=\"optimized-lcp-image\" alt=\"Code view of reCAPTCHA code MediaWiki\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\"><\/a>\n<div style=\"clear:both;\"><\/div>\n<p><strong>Add the following lines at the end of your LocalSettings.php file. <\/strong><br>\n<code>require_once(\"$IP\/extensions\/ConfirmEdit\/ReCaptcha.php\");<br>\n$wgCaptchaClass = ReCaptcha;<br>\n$wgReCaptchaPublicKey = 'Your captcha public key';<br>\n$wgReCaptchaPrivateKey = 'Your captcha private key';<\/code><br>\nThis code will link your Edit pages to the reCAPTCHA in your ConfirmEdit file.<\/p>\n<p><strong>Add the following code below the reCAPTCHA code.<\/strong> This code gives permission to users where they get the captcha or not. Also, it enables the reCAPTCHA for specific features. In this case the <em>edit<\/em>, <em>create<\/em>, <em>createaccount<\/em>, and <em>contactpage<\/em> all will have the reCAPTCHA on it.<br>\n<code>$wgGroupPermissions['*'            ]['skipcaptcha'] = false;<br>\n$wgGroupPermissions['user'         ]['skipcaptcha'] = true;<br>\n$wgGroupPermissions['autoconfirmed']['skipcaptcha'] = true;<br>\n$wgGroupPermissions['bot'          ]['skipcaptcha'] = true;<br>\n\/\/ registered bots $wgGroupPermissions['sysop'        ]['skipcaptcha'] = true;   $wgCaptchaTriggers['edit']          = true;<br>\n$wgCaptchaTriggers['create']        = true;<br>\n$wgCaptchaTriggers['createaccount'] = true;<br>\n$wgCaptchaTriggers['contactpage'] = true; \/\/ Adds reCAPTCHA to the contact page if created<\/code><br>\n<strong>Save the changes<\/strong>.<\/p>\n<p><br style=\"clear: both;\"><\/p>\n<p><a href=\"\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-2-captcha-view.gif\" rel=\"lightbox-0\"><img decoding=\"async\" alt=\"Preview of the reCAPTCHA in MediaWiki\" class=\"std_ss\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-2-captcha-view.gif\" style=\"float: right; margin: 0px 0px 15px 15px;\" title=\"Click here to view the larger image\" width=\"100\"><\/a><\/p>\n<div style=\"clear:both;\"><\/div>\n<p>Now when someone that is not logged into your MediaWiki site tries to submit a change to your pages, the reCAPTCHA will display like the image to the right.<\/p>\n<p class=\"alert\"><strong>Important!<\/strong> When editing pages in your MediaWiki, the reCAPTCHA will not display until you click the save button. After you click the save button, the reCAPTCHA will appear at the top with a warning.<\/p>\n<p> <br style=\"clear: both;\"><\/p><\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>To prevent spam bots and robots from filling your MediaWiki pages with spam links and unwanted content, you can have the \u201creCAPTCHA\u201d enabled in your MediaWiki LocalSettings.php to prevent bots from editing your pages. ReCAPTCHA is a free service from Google that allows you to add a verification box to determine if the page is<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/\"> Read More ><\/a><\/p>\n","protected":false},"author":9,"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":[99],"tags":[],"class_list":["post-2217","post","type-post","status-publish","format-standard","hentry","category-mediawiki"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to enable reCAPTCHA in MediaWiki | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"To prevent spam bots from accessing your MediaWiki, you can enable reCAPTCHA. This article explains how to add reCAPTCHA to your MediaWiki site.\" \/>\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\/mediawiki\/enable-recaptcha-media\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to enable reCAPTCHA in MediaWiki | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"To prevent spam bots from accessing your MediaWiki, you can enable reCAPTCHA. This article explains how to add reCAPTCHA to your MediaWiki site.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/\" \/>\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=\"2013-01-31T17:11:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:21:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\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=\"InMotion Hosting Contributor\" \/>\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.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/0ba9f3ef6fadef71df5aa120ff996c41\"},\"headline\":\"How to enable reCAPTCHA in MediaWiki\",\"datePublished\":\"2013-01-31T17:11:24+00:00\",\"dateModified\":\"2021-08-17T03:21:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/\"},\"wordCount\":278,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif\",\"articleSection\":[\"MediaWiki\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/\",\"name\":\"How to enable reCAPTCHA in MediaWiki | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif\",\"datePublished\":\"2013-01-31T17:11:24+00:00\",\"dateModified\":\"2021-08-17T03:21:51+00:00\",\"description\":\"To prevent spam bots from accessing your MediaWiki, you can enable reCAPTCHA. This article explains how to add reCAPTCHA to your MediaWiki site.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif\",\"width\":713,\"height\":332,\"caption\":\"Click here to view the larger image\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to enable reCAPTCHA in MediaWiki\"}]},{\"@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\/0ba9f3ef6fadef71df5aa120ff996c41\",\"name\":\"InMotion Hosting Contributor\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/jamesr\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to enable reCAPTCHA in MediaWiki | InMotion Hosting","description":"To prevent spam bots from accessing your MediaWiki, you can enable reCAPTCHA. This article explains how to add reCAPTCHA to your MediaWiki site.","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\/mediawiki\/enable-recaptcha-media\/","og_locale":"en_US","og_type":"article","og_title":"How to enable reCAPTCHA in MediaWiki | InMotion Hosting","og_description":"To prevent spam bots from accessing your MediaWiki, you can enable reCAPTCHA. This article explains how to add reCAPTCHA to your MediaWiki site.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-31T17:11:24+00:00","article_modified_time":"2021-08-17T03:21:51+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif","type":"","width":"","height":""}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/0ba9f3ef6fadef71df5aa120ff996c41"},"headline":"How to enable reCAPTCHA in MediaWiki","datePublished":"2013-01-31T17:11:24+00:00","dateModified":"2021-08-17T03:21:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/"},"wordCount":278,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif","articleSection":["MediaWiki"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/","name":"How to enable reCAPTCHA in MediaWiki | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif","datePublished":"2013-01-31T17:11:24+00:00","dateModified":"2021-08-17T03:21:51+00:00","description":"To prevent spam bots from accessing your MediaWiki, you can enable reCAPTCHA. This article explains how to add reCAPTCHA to your MediaWiki site.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_104_recaptcha_media-captcha-1-code-view.gif","width":713,"height":332,"caption":"Click here to view the larger image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/enable-recaptcha-media\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to enable reCAPTCHA in MediaWiki"}]},{"@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\/0ba9f3ef6fadef71df5aa120ff996c41","name":"InMotion Hosting Contributor","url":"https:\/\/www.inmotionhosting.com\/support\/author\/jamesr\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2217","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\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=2217"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2217\/revisions"}],"predecessor-version":[{"id":84994,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2217\/revisions\/84994"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=2217"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=2217"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=2217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}