{"id":85469,"date":"2017-05-10T21:45:00","date_gmt":"2017-05-11T02:45:00","guid":{"rendered":"https:\/\/allyant.com\/?p=85469"},"modified":"2025-08-27T13:06:54","modified_gmt":"2025-08-27T18:06:54","slug":"use-aria-label-screen-reader-text","status":"publish","type":"post","link":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/","title":{"rendered":"Use Aria Label Screen Reader Text"},"content":{"rendered":"\n<p>Every now and then a developer needs to include special content that should be seen by screen reader users, but not by anyone else. But what is the best way to convey this information? In some cases, an aria-label is the way to go, but more often screen reader-only text is best. Here are some instances for each. Hopefully, this helps answer the question: Should I use aria-label or screen reader-only text?<\/p>\n\n\n\n<p>The first thing to consider is the content you want to add. If it is essential and\/or beneficial for all users, just make it visible to all users. Screen readers will still see it and so will everyone else, no need to reinvent the wheel.<\/p>\n\n\n\n<p>That being said, screen reader, only text is great for providing more context to a link whose purpose may be obvious visually due to its location on screen but could be confusing without visual cues (for instance: \u201cAdd to Cart\u201d next to a product on a retail site). Depending on what other contextual clues are nearby, A screen reader user might ask: \u201cAdd what to cart?\u201d<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;a href=\"add-to-cart-link\"&gt;Add to Cart&lt;\/a&gt;<\/code><\/pre>\n\n\n\n<p>With some screen reader-only text, you could provide more information that may not be apparent to screen reader users:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;a href=\"add-to-cart-link\"&gt;Add to Cart&lt;span class=\"screen-reader-only\"&gt; super cool product you were considering&lt;\/span&gt;&lt;\/a&gt;<\/code><\/pre>\n\n\n\n<p>You can then apply the following CSS rules:<\/p>\n\n\n\n<p><strong>A quick note about the \u201cclip\u201d CSS rule<\/strong>: clip is deprecated in CSS3 and eventually won\u2019t be supported. Clip-path is replacing clip but until it is widely supported by browsers it is a good idea to include both.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.screen-reader-only {\n position: absolute;\n height: 1px;\n width: 1px;\n clip: rect(1px 1px 1px 1px); \/\/ IE 6 and 7\n clip: rect(1px,1px,1px,1px);\n clip-path: polygon(0px 0px, 0px 0px, 0px 0px);\n -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);\n overflow: hidden !important;\n}<\/code><\/pre>\n\n\n\n<p>This will hide the span visually but screen readers will still read it.<\/p>\n\n\n\n<p>Of course, it should be noted that the previous example could also be accomplished by the use of an aria-label as well by doing:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;a href=\"add-to-cart-link\" aria-label=\"add product name to cart\"&gt;Add to Cart&lt;\/a&gt;<\/code><\/pre>\n\n\n\n<p>While you could certainly do this, the main upside to using screen reader-only text over an aria-label is that the screen reader is not required to support ARIA, it\u2019s simply reading text on the page that sighted users cannot see. While most screen readers support ARIA, you may not want to rely on it if you don\u2019t have to.<\/p>\n\n\n\n<p>Another example of when you might want to use screen reader-only text is for headings that were added specifically to help screen reader users. Many screen reader users, when searching for the content they are interested in on a page, will use their screen reader to jump from heading to heading. Unfortunately, it might not always make sense to start each section of the page with a visual heading, so you could instead make those headings screen reader only as a compromise.<\/p>\n\n\n\n<p>There are a few use cases for aria-label where screen reader-only text won\u2019t suffice. For example, giving your nav tags an aria-label like \u201cMain\u201d or \u201cbreadcrumbs\u201d. This will help differentiate the navigation sections and give the user a better idea of where they are on the page.<\/p>\n\n\n\n<p>Like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;nav class=\"nav\" aria-label=\"Main\"&gt;\n   &lt;ul&gt;\n     ...\n   &lt;\/ul&gt;\n &lt;\/nav&gt;\n         \n &lt;nav class=\"nav\" aria-label=\"breadcrumbs\"&gt;\n   &lt;ul&gt;\n     ...\n   &lt;\/ul&gt;\n &lt;\/nav&gt;\n\n<\/code><\/pre>\n\n\n\n<p>Or, perhaps you have a page with multiple product listings, and it\u2019s difficult for screen reader users to know where one product ends, and another begins. You might try the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div role=\"group\" aria-label=\"product\"&gt;\n    &lt;h4&gt;$50 Gift Card&lt;\/h4&gt;}\n    &lt;img src=\"gift-card-image.jpg\" alt=\"$50 gift card\" \/&gt;\n    &lt;span class=\"price\"&gt;$50.00&lt;\/span&gt;\n    &lt;p class=\"description\"&gt;A $50 gift card. One size fits all!&lt;\/p&gt;\n  &lt;\/div&gt;<\/code><\/pre>\n\n\n\n<p>It should also be noted that the purpose of aria-label is to provide a label for something, typically a control or page section. Say you want to provide different instructions for screen reader users than for sighted users. Here\u2019s the wrong way to do this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div aria-label=\"These are screen reader user specific instructions.\"&gt;These are instructions for everyone else.&lt;\/div&gt;<\/code><\/pre>\n\n\n\n<p>The right way to do this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div class=\"screen-reader-only\"&gt;These are screen reader user specific instructions.&lt;\/div&gt;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div aria-hidden=\"true\"&gt;These are instructions for everyone else.&lt;\/div&gt;<\/code><\/pre>\n\n\n\n<p>Not only is the second technique more in keeping with the purpose of the aria-label attribute, but it\u2019s also the only one likely to work in most screen readers. In the first example, most screen readers will ignore the aria-label completely.<\/p>\n\n\n\n<p>As you can see, we often recommend screen reader only text over aria-labels, but both techniques have their drawbacks:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It\u2019s harder to test; one must use a screen reader to fully test how effective the text is.<\/li>\n\n\n\n<li>Since the text does not appear on the page, it runs the risk of being forgotten about, or the element it applies to could get moved or changed, rendering the text useless, outdated, or confusing.<\/li>\n\n\n\n<li>It\u2019s not available to everyone; non-screen reader users are excluded from accessing this information, even if it might be of help to them.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Every now and then a developer needs to include special content that should be seen by screen reader users, but not by anyone else. But what is the best way [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":85471,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[14],"tags":[],"class_list":["post-85469","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"In some cases, an aria-label is the way to go, but more often screen reader-only text is best. How do you know which to use?\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"Ryan Wieland\"\/>\n\t<meta name=\"google-site-verification\" content=\"sz9aAxXztsJYdCXthODGNnUF_2aAZsZBWbnNQPko7v8\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Allyant - Simple. Seamless. Accessibility.\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Use Aria Label Screen Reader Text - Allyant\" \/>\n\t\t<meta property=\"og:description\" content=\"In some cases, an aria-label is the way to go, but more often screen reader-only text is best. How do you know which to use?\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/allyant.com\/wp-content\/uploads\/2017\/05\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/allyant.com\/wp-content\/uploads\/2017\/05\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2017-05-11T02:45:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-08-27T18:06:54+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Use Aria Label Screen Reader Text - Allyant\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In some cases, an aria-label is the way to go, but more often screen reader-only text is best. How do you know which to use?\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/allyant.com\/wp-content\/uploads\/2017\/05\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#blogposting\",\"name\":\"Use Aria Label Screen Reader Text - Allyant\",\"headline\":\"Use Aria Label Screen Reader Text\",\"author\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/author\\\/ryanw\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/allyant.com\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg\",\"width\":2560,\"height\":1280},\"datePublished\":\"2017-05-10T21:45:00-05:00\",\"dateModified\":\"2025-08-27T13:06:54-05:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#webpage\"},\"articleSection\":\"Blog\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/allyant.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/allyant.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/allyant.com\\\/category\\\/blog\\\/#listItem\",\"name\":\"Blog\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/allyant.com\\\/category\\\/blog\\\/#listItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/allyant.com\\\/category\\\/blog\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#listItem\",\"name\":\"Use Aria Label Screen Reader Text\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/allyant.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#listItem\",\"position\":3,\"name\":\"Use Aria Label Screen Reader Text\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/allyant.com\\\/category\\\/blog\\\/#listItem\",\"name\":\"Blog\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/allyant.com\\\/#organization\",\"name\":\"Allyant\",\"description\":\"We make accessibility simple, seamless, and efficient for organizations\\u2014ensuring equitable access to digital, document, and printed information for people with disabilities.\",\"url\":\"https:\\\/\\\/allyant.com\\\/\",\"email\":\"info@allyant.com\",\"telephone\":\"+16132360866\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":0,\"maxValue\":200},\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/allyant.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image.png\",\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#organizationLogo\",\"width\":5672,\"height\":2900,\"caption\":\"Allyant logo. Simple, Seamless, Accessibility.\"},\"image\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/allyant.com\\\/author\\\/ryanw\\\/#author\",\"url\":\"https:\\\/\\\/allyant.com\\\/author\\\/ryanw\\\/\",\"name\":\"Ryan Wieland\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bc5f979d569248853f2122b7065ff94a15e2801fb929e439dd74ca03f4cca41e?s=96&d=mm&r=g\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#webpage\",\"url\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/\",\"name\":\"Use Aria Label Screen Reader Text - Allyant\",\"description\":\"In some cases, an aria-label is the way to go, but more often screen reader-only text is best. How do you know which to use?\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/author\\\/ryanw\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/author\\\/ryanw\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/allyant.com\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg\",\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#mainImage\",\"width\":2560,\"height\":1280},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/blog\\\/use-aria-label-screen-reader-text\\\/#mainImage\"},\"datePublished\":\"2017-05-10T21:45:00-05:00\",\"dateModified\":\"2025-08-27T13:06:54-05:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/allyant.com\\\/#website\",\"url\":\"https:\\\/\\\/allyant.com\\\/\",\"name\":\"Allyant\",\"alternateName\":\"CommonLook\",\"description\":\"Simple. Seamless. Accessibility.\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/allyant.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Use Aria Label Screen Reader Text - Allyant<\/title>\n\n","aioseo_head_json":{"title":"Use Aria Label Screen Reader Text - Allyant","description":"In some cases, an aria-label is the way to go, but more often screen reader-only text is best. How do you know which to use?","canonical_url":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"google-site-verification":"sz9aAxXztsJYdCXthODGNnUF_2aAZsZBWbnNQPko7v8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#blogposting","name":"Use Aria Label Screen Reader Text - Allyant","headline":"Use Aria Label Screen Reader Text","author":{"@id":"https:\/\/allyant.com\/author\/ryanw\/#author"},"publisher":{"@id":"https:\/\/allyant.com\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/allyant.com\/wp-content\/uploads\/2017\/05\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg","width":2560,"height":1280},"datePublished":"2017-05-10T21:45:00-05:00","dateModified":"2025-08-27T13:06:54-05:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#webpage"},"isPartOf":{"@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#webpage"},"articleSection":"Blog"},{"@type":"BreadcrumbList","@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/allyant.com#listItem","position":1,"name":"Home","item":"https:\/\/allyant.com","nextItem":{"@type":"ListItem","@id":"https:\/\/allyant.com\/category\/blog\/#listItem","name":"Blog"}},{"@type":"ListItem","@id":"https:\/\/allyant.com\/category\/blog\/#listItem","position":2,"name":"Blog","item":"https:\/\/allyant.com\/category\/blog\/","nextItem":{"@type":"ListItem","@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#listItem","name":"Use Aria Label Screen Reader Text"},"previousItem":{"@type":"ListItem","@id":"https:\/\/allyant.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#listItem","position":3,"name":"Use Aria Label Screen Reader Text","previousItem":{"@type":"ListItem","@id":"https:\/\/allyant.com\/category\/blog\/#listItem","name":"Blog"}}]},{"@type":"Organization","@id":"https:\/\/allyant.com\/#organization","name":"Allyant","description":"We make accessibility simple, seamless, and efficient for organizations\u2014ensuring equitable access to digital, document, and printed information for people with disabilities.","url":"https:\/\/allyant.com\/","email":"info@allyant.com","telephone":"+16132360866","numberOfEmployees":{"@type":"QuantitativeValue","minValue":0,"maxValue":200},"logo":{"@type":"ImageObject","url":"https:\/\/allyant.com\/wp-content\/uploads\/2024\/04\/image.png","@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#organizationLogo","width":5672,"height":2900,"caption":"Allyant logo. Simple, Seamless, Accessibility."},"image":{"@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/allyant.com\/author\/ryanw\/#author","url":"https:\/\/allyant.com\/author\/ryanw\/","name":"Ryan Wieland","image":{"@type":"ImageObject","url":"https:\/\/secure.gravatar.com\/avatar\/bc5f979d569248853f2122b7065ff94a15e2801fb929e439dd74ca03f4cca41e?s=96&d=mm&r=g"}},{"@type":"WebPage","@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#webpage","url":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/","name":"Use Aria Label Screen Reader Text - Allyant","description":"In some cases, an aria-label is the way to go, but more often screen reader-only text is best. How do you know which to use?","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/allyant.com\/#website"},"breadcrumb":{"@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#breadcrumblist"},"author":{"@id":"https:\/\/allyant.com\/author\/ryanw\/#author"},"creator":{"@id":"https:\/\/allyant.com\/author\/ryanw\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/allyant.com\/wp-content\/uploads\/2017\/05\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg","@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#mainImage","width":2560,"height":1280},"primaryImageOfPage":{"@id":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/#mainImage"},"datePublished":"2017-05-10T21:45:00-05:00","dateModified":"2025-08-27T13:06:54-05:00"},{"@type":"WebSite","@id":"https:\/\/allyant.com\/#website","url":"https:\/\/allyant.com\/","name":"Allyant","alternateName":"CommonLook","description":"Simple. Seamless. Accessibility.","inLanguage":"en-US","publisher":{"@id":"https:\/\/allyant.com\/#organization"}}]},"og:locale":"en_US","og:site_name":"Allyant - Simple. Seamless. Accessibility.","og:type":"article","og:title":"Use Aria Label Screen Reader Text - Allyant","og:description":"In some cases, an aria-label is the way to go, but more often screen reader-only text is best. How do you know which to use?","og:url":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/","og:image":"https:\/\/allyant.com\/wp-content\/uploads\/2017\/05\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg","og:image:secure_url":"https:\/\/allyant.com\/wp-content\/uploads\/2017\/05\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg","og:image:width":2560,"og:image:height":1280,"article:published_time":"2017-05-11T02:45:00+00:00","article:modified_time":"2025-08-27T18:06:54+00:00","twitter:card":"summary_large_image","twitter:title":"Use Aria Label Screen Reader Text - Allyant","twitter:description":"In some cases, an aria-label is the way to go, but more often screen reader-only text is best. How do you know which to use?","twitter:image":"https:\/\/allyant.com\/wp-content\/uploads\/2017\/05\/Use-Aria-Label-Screen-Reader-Text-scaled-1.jpeg"},"aioseo_meta_data":{"post_id":"85469","title":"#post_title #separator_sa #site_title","description":"In some cases, an aria-label is the way to go, but more often screen reader-only text is best. How do you know which to use?","keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":"0","open_ai":"{\"title\":{\"suggestions\":[],\"usage\":0},\"description\":{\"suggestions\":[],\"usage\":0}}","created":"2022-12-05 03:51:03","updated":"2026-05-14 03:35:06","ai":null,"seo_analyzer_scan_date":"2026-05-14 03:35:06"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/allyant.com\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/allyant.com\/category\/blog\/\" title=\"Blog\">Blog<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tUse Aria Label Screen Reader Text\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/allyant.com"},{"label":"Blog","link":"https:\/\/allyant.com\/category\/blog\/"},{"label":"Use Aria Label Screen Reader Text","link":"https:\/\/allyant.com\/blog\/use-aria-label-screen-reader-text\/"}],"_links":{"self":[{"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/posts\/85469","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/comments?post=85469"}],"version-history":[{"count":0,"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/posts\/85469\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/media\/85471"}],"wp:attachment":[{"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/media?parent=85469"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/categories?post=85469"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/allyant.com\/wp-json\/wp\/v2\/tags?post=85469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}