{"id":1490,"date":"2012-06-21T13:22:26","date_gmt":"2012-06-21T17:22:26","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2012\/06\/21\/parameter-types\/"},"modified":"2021-08-16T23:40:38","modified_gmt":"2021-08-17T03:40:38","slug":"parameter-types","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/","title":{"rendered":"Basic parameter types in a Joomla 2.5 plugin"},"content":{"rendered":"<p class=\"alert\">Joomla 2.5 has reached its end of life as for 12\/31\/2014. Please be advised this may be a security risk to your website. You can view more information about the end of life <a href=\"https:\/\/docs.joomla.org\/Joomla!_CMS_versions\">here<\/a>.<\/p>\n<p>When adding parameters to Joomla 2.5 plugins, there are various input types you can use. In our testing thus far, we have only <a href=\"\/support\/edu\/joomla\/joomla-2-5\/add-parameter\/\">used the text input type<\/a>. In this Joomla 2.5 tutorial, we\u2019ll cover some of the various other plugin parameter types that you can use.<\/p>\n<h2>Radio type plugin parameters<\/h2>\n<p><a href=\"\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"800\" height=\"412\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif\" class=\"optimized-lcp-image\" alt=\"setting-up-a-radio-parameter\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<h3>Example Code:<\/h3>\n<pre class=\"code_block\">&lt;field name=\"color\" <strong>type=\"radio\"<\/strong> default=\"black\" description=\"Which color should the message be displayed in?\" label=\"Color\"&gt;\n    &lt;option value=\"black\"&gt;black&lt;\/option&gt;\n    &lt;option value=\"red\"&gt;red&lt;\/option&gt;\n    &lt;option value=\"blue\"&gt;blue&lt;\/option&gt;\n&lt;\/field&gt;<\/pre>\n<p>The code to add a radio button as a plugin parameter is very similar to the standard code for using radio buttons in HTML.<\/p>\n<p>Accessing the value of a radio button within your plugin\u2019s php file is similar to getting the value of a standard text type field. As our field\u2019s name above is color, we\u2019ll get the value of the user\u2019s color using that name, as in:<\/p>\n<p class=\"code_block\">$this-&gt;params-&gt;get(\u2018color\u2019)<\/p>\n<h2>List type plugin parameters<\/h2>\n<p><a href=\"\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_adding-a-list-plugin.gif\" rel=\"lightbox-0\"><img loading=\"lazy\" decoding=\"async\" class=\"std_ss size-full wp-image-7813\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_adding-a-list-plugin.gif\" alt=\"adding-a-list-plugin\" width=\"800\" height=\"367\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<p>A list parameter refers to a drop down list. In our hello world plugin, we added the following list to allow users to choose what font size they would like the message displayed using.<\/p>\n<h3>Example Code:<\/h3>\n<pre class=\"code_block\">&lt;field name=\"font-size\" <strong>type=\"list\"<\/strong> default=\"12\" description=\"What size font should the message use?\" label=\"Font size\"&gt;\n    &lt;option value=\"8\"&gt;8px&lt;\/option&gt;\n    &lt;option value=\"12\"&gt;12px&lt;\/option&gt;\n    &lt;option value=\"16\"&gt;16px&lt;\/option&gt;\n&lt;\/field&gt;<\/pre>\n<p>Again, accessing the parameter value itself is done in the same manner:<\/p>\n<p class=\"code_block\">$this-&gt;params-&gt;get(\u2018font-size\u2019)<\/p>\n<h2>Text parameter input type<\/h2>\n<p><a href=\"\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_standard-text-type-input.gif\" rel=\"lightbox-0\"><img loading=\"lazy\" decoding=\"async\" class=\"std_ss size-full wp-image-7814\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_standard-text-type-input.gif\" alt=\"standard-text-type-input\" width=\"800\" height=\"433\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<p>To make this a well rounded tutorial, we\u2019ll also include the text input type (even though we referenced it in a previous article).<\/p>\n<h3>Example Code:<\/h3>\n<pre class=\"code_block\">&lt;field name=\"alt-text\" <strong>type=\"text\"<\/strong> default=\"\" label=\"Alternative Text\" description=\"Besides Hello World, you can specify other text here to print to the screen instead.\" \/&gt;<\/pre>\n<p>To access this value, again use the following code in your plugin\u2019s php file:<\/p>\n<p class=\"code_block\">$this-&gt;params-&gt;get(\u2018alt-text\u2019)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Joomla 2.5 has reached its end of life as for 12\/31\/2014. Please be advised this may be a security risk to your website. You can view more information about the end of life here. When adding parameters to Joomla 2.5 plugins, there are various input types you can use. In our testing thus far, we<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/\"> 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,82],"tags":[2113],"class_list":["post-1490","post","type-post","status-publish","format-standard","hentry","category-joomla","category-joomla-2-5","tag-joomla-v2-5"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Basic parameter types in a Joomla 2.5 plugin | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"When creating Joomla 2.5 plugin parameters, the most common input types are text, radio, and lists. In this tutorial we&#039;ll give you example usage of each of these.\" \/>\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-2-5\/parameter-types\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Basic parameter types in a Joomla 2.5 plugin | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"When creating Joomla 2.5 plugin parameters, the most common input types are text, radio, and lists. In this tutorial we&#039;ll give you example usage of each of these.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/\" \/>\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=\"2012-06-21T17:22:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:40:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif\" \/>\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=\"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\/joomla\/joomla-2-5\/parameter-types\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/\"},\"author\":{\"name\":\"Brad Markle\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\"},\"headline\":\"Basic parameter types in a Joomla 2.5 plugin\",\"datePublished\":\"2012-06-21T17:22:26+00:00\",\"dateModified\":\"2021-08-17T03:40:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/\"},\"wordCount\":278,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif\",\"keywords\":[\"Joomla v2.5\"],\"articleSection\":[\"Joomla\",\"Joomla 2.5\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/\",\"name\":\"Basic parameter types in a Joomla 2.5 plugin | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif\",\"datePublished\":\"2012-06-21T17:22:26+00:00\",\"dateModified\":\"2021-08-17T03:40:38+00:00\",\"description\":\"When creating Joomla 2.5 plugin parameters, the most common input types are text, radio, and lists. In this tutorial we'll give you example usage of each of these.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif\",\"width\":800,\"height\":412,\"caption\":\"setting-up-a-radio-parameter\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Basic parameter types in a Joomla 2.5 plugin\"}]},{\"@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":"Basic parameter types in a Joomla 2.5 plugin | InMotion Hosting","description":"When creating Joomla 2.5 plugin parameters, the most common input types are text, radio, and lists. In this tutorial we'll give you example usage of each of these.","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-2-5\/parameter-types\/","og_locale":"en_US","og_type":"article","og_title":"Basic parameter types in a Joomla 2.5 plugin | InMotion Hosting","og_description":"When creating Joomla 2.5 plugin parameters, the most common input types are text, radio, and lists. In this tutorial we'll give you example usage of each of these.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2012-06-21T17:22:26+00:00","article_modified_time":"2021-08-17T03:40:38+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif","type":"","width":"","height":""}],"author":"Brad Markle","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Brad Markle","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/"},"author":{"name":"Brad Markle","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf"},"headline":"Basic parameter types in a Joomla 2.5 plugin","datePublished":"2012-06-21T17:22:26+00:00","dateModified":"2021-08-17T03:40:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/"},"wordCount":278,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif","keywords":["Joomla v2.5"],"articleSection":["Joomla","Joomla 2.5"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/","name":"Basic parameter types in a Joomla 2.5 plugin | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif","datePublished":"2012-06-21T17:22:26+00:00","dateModified":"2021-08-17T03:40:38+00:00","description":"When creating Joomla 2.5 plugin parameters, the most common input types are text, radio, and lists. In this tutorial we'll give you example usage of each of these.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_setting-up-a-radio-parameter.gif","width":800,"height":412,"caption":"setting-up-a-radio-parameter"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/parameter-types\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Basic parameter types in a Joomla 2.5 plugin"}]},{"@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\/1490","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=1490"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1490\/revisions"}],"predecessor-version":[{"id":85903,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1490\/revisions\/85903"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=1490"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=1490"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=1490"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}