{"id":2202,"date":"2013-01-23T19:33:48","date_gmt":"2013-01-23T19:33:48","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/23\/image-gallery-wiki-code\/"},"modified":"2021-08-16T23:23:47","modified_gmt":"2021-08-17T03:23:47","slug":"image-gallery-wiki-code","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/","title":{"rendered":"Creating an Image Gallery in MediaWiki"},"content":{"rendered":"<p>Along with adding images in your MediaWiki articles, you can also add an image gallery to you MediaWiki page. <a href=\"\/support\/edu\/mediawiki\/formatting-images-wiki-code\/\" target=\"_blank\" title=\"Click for info on formatting images in MediaWiki\" rel=\"noopener\">Formatting the image gallery<\/a> in MediaWiki is a little different than formatting individual images. For information on how to insert images into MediaWiki pages, please see our tutorial on <a href=\"\/support\/edu\/mediawiki\/insert-images-wiki\/\" target=\"_blank\" title=\"Click here for how to insert images in MediaWiki\" rel=\"noopener\">How to insert images into MediaWiki<\/a>. The image below is a small snapshot of what the image gallery looks like.<\/p>\n<div><a href=\"\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"681\" height=\"340\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif\" class=\"optimized-lcp-image\" alt=\"Preview of MediaWiki gallery\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\"><\/a>\n<div style=\"clear:both;\"><\/div>\n<\/div>\n<p>Next we will discuss the basics of the MediaWiki Image Gallery properties and parameters.<\/p>\n<h2>Image Gallery Image properties<\/h2>\n<p>Below is a snippet of what the code looks like for the image gallery. To have a gallery show on your site, you simply start your code with the <span style=\"font-family: courier new;\">&lt;gallery&gt;<\/span> tag, add images one after another, and end with the <span style=\"font-family: courier new;\">&lt;\/gallery&gt; tag<\/span>.<\/p>\n<pre style=\"margin-left: 20px;\">&lt;gallery&gt; File:Example|caption File:Example|caption File:Example|caption File:Example|caption &lt;\/gallery&gt;<\/pre>\n<p>Each image can have its own parameters such as Italic caption, external link and so forth. Below are a list of some of the options available for formatting your image gallery images.<\/p>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th colspan=\"2\">MediaWiki code for image gallery properties<\/th>\n<\/tr>\n<tr>\n<th>Caption:<\/th>\n<td>\n<pre style=\"margin: 0px; padding: 0px;\">File:Example1.png|caption<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<th>Italic Caption:<\/th>\n<td>\n<pre style=\"margin: 0px; padding: 0px;\">File:Example2.png| ''Caption in Italics''<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<th>Bolded Caption:<\/th>\n<td>\n<pre style=\"margin: 0px; padding: 0px;\">File:Example3.png| '''Bolded Caption'''<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<th>External link:<\/th>\n<td>\n<pre style=\"margin: 0px; padding: 0px;\">File:Example4.png|caption [https:\/\/wikipedia.org Wikipedia]<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<th>Internal Link:<\/th>\n<td>\n<pre style=\"margin: 0px; padding: 0px;\">File:Example5.png|caption [[Your Wiki Page]]<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<th>External Image link:<\/th>\n<td>\n<pre style=\"margin: 0px; padding: 0px;\">File:Example6.png|caption|link=https:\/\/google.com<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<th>Internal Image Link:<\/th>\n<td>\n<pre style=\"margin: 0px; padding: 0px;\">File:Example7.png|caption|link=Help:Contents<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<th>Adding Alt text:<\/th>\n<td>\n<pre style=\"margin: 0px; padding: 0px;\">File:Example8.png|caption|alt=MediaWiki Image Gallery image<\/pre>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Image Gallery Parameters<\/h2>\n<p>Similar to the individual properties, the gallery parameters allow some formatting that apply to the entire gallery in general. For example, if you want all your images to be 100 pixels, you can use the widths= parameter to set all images to the specific size. Below is an example of how this works.<\/p>\n<pre style=\"margin-left: 20px;\">&lt;gallery {parameter1} {parameter2} {parameter3}&gt;<br>File:Example|caption &lt;\/gallery&gt;<\/pre>\n<p>Below is a brief description of what each parameter does.<\/p>\n<ul style=\"list-style: none;\">\n<li><strong>caption=\u201dyour caption here\u201d<\/strong>: This places a caption above the images in the Gallery.<\/li>\n<li><strong>widths=100px:<\/strong> Fixes the width of each image to 100 pixels.<\/li>\n<li><strong>heights=100px:<\/strong> Fixes the height of the images to 100 pixels.<\/li>\n<li><strong>perrow=4:<\/strong> Fixes the quantity of images displayed on a row to 4.<\/li>\n<li><strong>showfilename=all<\/strong>: This will display the filename for all images in the caption.<\/li>\n<\/ul>\n<h2>Example of a functioning image Gallery<\/h2>\n<p>In this example, the following code is used to demonstrate what the properties and parameters look like when you incorporate them in your MediaWiki page. When adding the code to your MediaWiki page, you will need to change the image name to an image name you uploaded to your server.<\/p>\n<pre style=\"margin-left: 20px;\">&lt;gallery caption=\"Caption for gallery\" widths=125px perrow=4 showfilename=all&gt;<br> File:crown2r.png|Standard Caption<br> File:crown2.png| ''Caption in Italics''<br> File:crown1r.png| '''Bolded Caption'''<br> File:crown1.png|An External link to [https:\/\/wikipedia.org Wikipedia]<br> File:crown3r.png|An Internal link to [[Help:Contents]]<br> File:crown3.png|Links image itself to external site|link=https:\/\/google.com<br> File:crown4r.png|Links image itself to internal page|link=Help:Contents<br> File:crown4.png|Alt text in the \"''alt''\" tag only visible in the code|alt=MediaWiki Image Gallery image.<br>&lt;\/gallery&gt;<\/pre>\n<p>After inserting the code with valid image names you should have a gallery that looks like the snapshot below. Each image can have its own individual propertis that will display them differently from the other images.<\/p>\n<p><a href=\"\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki-final.gif\" rel=\"lightbox-0\"><img loading=\"lazy\" decoding=\"async\" alt=\"Real Example of MediaWiki Gallery\" class=\"std_ss\" height=\"438\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki-final.gif\" style=\"max-width:400px;max-height:438px;display: block; margin-left: auto; margin-right: auto;\" title=\"Click here to view the larger image\" width=\"400\"><\/a><\/p>\n<div style=\"clear:both;\"><\/div>\n<p>For information on how to format individual images in MediaWiki, please see our article on <a href=\"\/support\/edu\/mediawiki\/formatting-images-wiki-code\/\" target=\"_blank\" title=\"Click here for more info on formatting images\" rel=\"noopener\">Formatting images in MediaWiki<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Along with adding images in your MediaWiki articles, you can also add an image gallery to you MediaWiki page. Formatting the image gallery in MediaWiki is a little different than formatting individual images. For information on how to insert images into MediaWiki pages, please see our tutorial on How to insert images into MediaWiki. The<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/\"> 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-2202","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>Creating an Image Gallery in MediaWiki | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"MediaWIki can have image galleries placed in the pages. This article will explain how to insert an Image Gallery in MediaWiki.\" \/>\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\/image-gallery-wiki-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating an Image Gallery in MediaWiki | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"MediaWIki can have image galleries placed in the pages. This article will explain how to insert an Image Gallery in MediaWiki.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/\" \/>\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-23T19:33:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:23:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.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=\"3 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\/image-gallery-wiki-code\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/0ba9f3ef6fadef71df5aa120ff996c41\"},\"headline\":\"Creating an Image Gallery in MediaWiki\",\"datePublished\":\"2013-01-23T19:33:48+00:00\",\"dateModified\":\"2021-08-17T03:23:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/\"},\"wordCount\":428,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif\",\"articleSection\":[\"MediaWiki\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/\",\"name\":\"Creating an Image Gallery in MediaWiki | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif\",\"datePublished\":\"2013-01-23T19:33:48+00:00\",\"dateModified\":\"2021-08-17T03:23:47+00:00\",\"description\":\"MediaWIki can have image galleries placed in the pages. This article will explain how to insert an Image Gallery in MediaWiki.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif\",\"width\":681,\"height\":340,\"caption\":\"Click here to view the larger image\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating an Image Gallery 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":"Creating an Image Gallery in MediaWiki | InMotion Hosting","description":"MediaWIki can have image galleries placed in the pages. This article will explain how to insert an Image Gallery in MediaWiki.","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\/image-gallery-wiki-code\/","og_locale":"en_US","og_type":"article","og_title":"Creating an Image Gallery in MediaWiki | InMotion Hosting","og_description":"MediaWIki can have image galleries placed in the pages. This article will explain how to insert an Image Gallery in MediaWiki.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-23T19:33:48+00:00","article_modified_time":"2021-08-17T03:23:47+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/0ba9f3ef6fadef71df5aa120ff996c41"},"headline":"Creating an Image Gallery in MediaWiki","datePublished":"2013-01-23T19:33:48+00:00","dateModified":"2021-08-17T03:23:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/"},"wordCount":428,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif","articleSection":["MediaWiki"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/","name":"Creating an Image Gallery in MediaWiki | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif","datePublished":"2013-01-23T19:33:48+00:00","dateModified":"2021-08-17T03:23:47+00:00","description":"MediaWIki can have image galleries placed in the pages. This article will explain how to insert an Image Gallery in MediaWiki.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/edu_mediawiki_102_gallery_image-gallery-mediawiki.gif","width":681,"height":340,"caption":"Click here to view the larger image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/mediawiki\/image-gallery-wiki-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Creating an Image Gallery 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\/2202","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=2202"}],"version-history":[{"count":2,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2202\/revisions"}],"predecessor-version":[{"id":85033,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2202\/revisions\/85033"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=2202"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=2202"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=2202"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}