{"id":1492,"date":"2012-06-21T14:34:07","date_gmt":"2012-06-21T18:34:07","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2012\/06\/21\/fieldset-names\/"},"modified":"2021-06-04T15:08:13","modified_gmt":"2021-06-04T19:08:13","slug":"fieldset-names","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/","title":{"rendered":"Using fieldsets to separate plugin paramenters in Joomla 2.5"},"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 working with Joomla 2.5 plugins, you may have noticed that some of the parameters are divided into separate parameter types, such as <strong>Basic Options<\/strong> and <strong>Advanced Options<\/strong>. If you\u2019re writing your own Joomla 2.5 plugin, you can do this separation by adding parameters to different fieldsets.<\/p>\n<h2>Fieldset Names<\/h2>\n<p>Here is our helloworld\u2019s xml file thus far:<\/p>\n<pre class=\"code_block\">&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;extension version=\"2.5\" type=\"plugin\" group=\"content\"&gt;\n        &lt;name&gt;Hello World&lt;\/name&gt;\n        &lt;author&gt;Brad Markle&lt;\/author&gt;\n        &lt;creationDate&gt;June 18th, 2012&lt;\/creationDate&gt;\n        &lt;copyright&gt;InMotion Hosting&lt;\/copyright&gt;\n        &lt;license&gt;GNU General Public License&lt;\/license&gt;\n        &lt;authorEmail&gt;bradm@inmotionhosting.com&lt;\/authorEmail&gt;\n        &lt;authorUrl&gt;https:\/\/www.inmotionhosting.com&lt;\/authorUrl&gt;\n        &lt;version&gt;1.0&lt;\/version&gt;\n        &lt;description&gt;This is my very first plugin! Simple Hello World Plugin that prints \"Hello World\" at the beginning of every article.&lt;\/description&gt;\n        &lt;files&gt;\n                &lt;filename plugin=\"helloworld\"&gt;helloworld.php&lt;\/filename&gt;\n                &lt;filename&gt;index.html&lt;\/filename&gt;\n        &lt;\/files&gt;\n        &lt;config&gt;\n                &lt;fields name=\"params\"&gt;\n                        <strong>&lt;fieldset name=\"basic\"&gt;<\/strong>\n                                &lt;field name=\"alt-text\"  type=\"text\" default=\"\" label=\"Alternative Text\" description=\"Besides Hello World, you can specify other text here to print to the screen instead.\" \/&gt;\n                        &lt;\/fieldset&gt;\n                        <strong>&lt;fieldset name=\"more\"&gt;<\/strong>\n                                &lt;field name=\"color\" type=\"radio\" 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;\n                                &lt;field name=\"font-size\" type=\"list\" 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;\n                        &lt;\/fieldset&gt;\n                &lt;\/fields&gt;\n        &lt;\/config&gt;\n&lt;\/extension&gt;<\/pre>\n<p>As you can see in the code we have two fieldsets, one named <span style=\"color: #ff0000;\"><strong>basic<\/strong><\/span> and one named <span style=\"color: #ff0000;\"><strong>more<\/strong><\/span>. You can see in the screenshot below how this separates the parameters:<\/p>\n<p><a href=\"\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.gif\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"800\" height=\"420\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.gif\" class=\"optimized-lcp-image\" alt=\"fieldset-names\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<h2>Fieldset Language definitions<\/h2>\n<p>You may have noticed from the screenshot that even though we set the second fieldset with a name of \u201cmore\u201d, it shows as COM_PLUGINS_more_FIELDSET_LABEL. This is because by default there are only a certain set of names that you can use for fieldsets. These names are defined in the following file:<\/p>\n<p class=\"code_block\">administrator\/language\/en-GB\/en-GB.com_plugins.ini<\/p>\n<p>When looking at en-GB.com_plugins.ini, you can see the following fieldset names are defined:<\/p>\n<p class=\"code_block\">COM_PLUGINS_ADVANCED_FIELDSET_LABEL=\u201d<strong>Advanced Options<\/strong>\u201d<br>\nCOM_PLUGINS_BASIC_FIELDSET_LABEL=\u201d<strong>Basic Options<\/strong>\u201c<\/p>\n<p>If you want to label either of your fieldsets as \u201cBasic Options\u201d or \u201cAdvanced Options\u201d, you must set the fieldset name to either basic or advanced.<\/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 working with Joomla 2.5 plugins, you may have noticed that some of the parameters are divided into separate parameter types,<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/\"> 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-1492","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>Using fieldsets to separate plugin paramenters in Joomla 2.5 | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Using fieldsets, you can separate your plugin parameters into Basic Options and Advanced Options. We&#039;ll go over fieldset names more in this plugin tutorial.\" \/>\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\/fieldset-names\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using fieldsets to separate plugin paramenters in Joomla 2.5 | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Using fieldsets, you can separate your plugin parameters into Basic Options and Advanced Options. We&#039;ll go over fieldset names more in this plugin tutorial.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/\" \/>\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-21T18:34:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-06-04T19:08:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.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=\"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\/joomla\/joomla-2-5\/fieldset-names\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/\"},\"author\":{\"name\":\"Brad Markle\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\"},\"headline\":\"Using fieldsets to separate plugin paramenters in Joomla 2.5\",\"datePublished\":\"2012-06-21T18:34:07+00:00\",\"dateModified\":\"2021-06-04T19:08:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/\"},\"wordCount\":248,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.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\/fieldset-names\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/\",\"name\":\"Using fieldsets to separate plugin paramenters in Joomla 2.5 | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.gif\",\"datePublished\":\"2012-06-21T18:34:07+00:00\",\"dateModified\":\"2021-06-04T19:08:13+00:00\",\"description\":\"Using fieldsets, you can separate your plugin parameters into Basic Options and Advanced Options. We'll go over fieldset names more in this plugin tutorial.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.gif\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.gif\",\"width\":800,\"height\":420,\"caption\":\"fieldset-names\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using fieldsets to separate plugin paramenters in Joomla 2.5\"}]},{\"@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":"Using fieldsets to separate plugin paramenters in Joomla 2.5 | InMotion Hosting","description":"Using fieldsets, you can separate your plugin parameters into Basic Options and Advanced Options. We'll go over fieldset names more in this plugin tutorial.","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\/fieldset-names\/","og_locale":"en_US","og_type":"article","og_title":"Using fieldsets to separate plugin paramenters in Joomla 2.5 | InMotion Hosting","og_description":"Using fieldsets, you can separate your plugin parameters into Basic Options and Advanced Options. We'll go over fieldset names more in this plugin tutorial.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2012-06-21T18:34:07+00:00","article_modified_time":"2021-06-04T19:08:13+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/"},"author":{"name":"Brad Markle","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf"},"headline":"Using fieldsets to separate plugin paramenters in Joomla 2.5","datePublished":"2012-06-21T18:34:07+00:00","dateModified":"2021-06-04T19:08:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/"},"wordCount":248,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.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\/fieldset-names\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/","name":"Using fieldsets to separate plugin paramenters in Joomla 2.5 | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.gif","datePublished":"2012-06-21T18:34:07+00:00","dateModified":"2021-06-04T19:08:13+00:00","description":"Using fieldsets, you can separate your plugin parameters into Basic Options and Advanced Options. We'll go over fieldset names more in this plugin tutorial.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.gif","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/06\/edu_joomla25_create-plugin-tutorial_fieldset-names.gif","width":800,"height":420,"caption":"fieldset-names"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-2-5\/fieldset-names\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Using fieldsets to separate plugin paramenters in Joomla 2.5"}]},{"@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\/1492","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=1492"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1492\/revisions"}],"predecessor-version":[{"id":73763,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1492\/revisions\/73763"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=1492"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=1492"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=1492"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}