• Skip to main content
  • Skip to primary sidebar
  • Skip to footer
Equalize Digital Home

Equalize Digital

Website Accessibility Consulting, Training, and Development

  • My Account
  • Swag Shop
  • Checkout
  • Services
    • Accessibility Audits
    • User Testing
    • Accessibility Remediation
    • VPAT & ACR Preparation
    • Accessibility Monitoring
    • Web Accessibility Training
    • Accessibility for Agencies
  • Accessibility Checker
    • Overview
    • Features
    • Pricing
    • Documentation
    • Support
    • Buy Now
  • Company
    • About Us
    • Our Team
    • Industry Expertise
    • Blog
    • Accessibility Statement
    • Contact Sales
    • Become An Affiliate
  • Events
    • Accessibility Meetup
    • Global Accessibility Awareness Day
  • Contact Sales
  • My Account
  • Checkout
Home / Accessibility Checker / Possible Heading

Possible Heading

Notice Type: Warning
Relevant WCAG Conformance Levels: AA, A

Did a “Possible Heading” warning appear in an Accessibility Checker audit of one of your WordPress posts or pages? Read on below for an explanation of this warning, how it impacts your website’s accessibility, and how to fix it.

Table of Contents

  • About the Possible Heading Warning
    • What is a heading?
    • How are headings coded?
    • What does the Possible Heading warning mean?
    • How does Accessibility Checker test for possible headings?
    • Why does Accessibility Checker flag a warning for possible headings?
  • Impact on Accessibility
    • Why are headings important?
    • Problems with not having properly coded headings
    • Bonus benefit: headings improve search engine optimization
    • Relevant WCAG 2 Success Criteria
      • 1.3.1 Info and Relationships – Level A 
      • 2.4.1 Bypass Blocks – Level A
  • How to Resolve a Possible Heading Warning
    • What to do (in short)
    • How to find possible headings on your WordPress posts or pages
    • How to add headings to your post or page content

About the Possible Heading Warning

What is a heading?

A heading is an organizational tool for web content. They create a logical path of hierarchy throughout a page that is beneficial for all users, disabled or not, and allow browsers and assistive technology to navigate more quickly through the page.

How are headings coded?

In HTML, headings are denoted with what are colloquially referred to as “H tags.” These tags go in order from <h1>, the most important, to <h6>, the least important. Text for headings should be wrapped in an opening and closing heading tag at the appropriate level for where the heading falls in the hierarchy of the page. For example, the heading for this section looks like this:

<h3>How are headings coded?</h3>

Whereas the larger heading above it, that groups all of the subgroups in this section, is coded with an <H2> tag:

<h2>About the Possible Heading Warning</h2>

In this way, the headings on the page follow a natural outline-style format. You can learn more about why every page needs headings on the Missing Heading page and why heading order matters on the Incorrect Heading Order page.

What does the Possible Heading warning mean?

A Possible Heading warning occurs when there is text on a page that appears to be a heading, but has not been coded with proper heading tags.

How does Accessibility Checker test for possible headings?

While auditing your page or post content, Accessibility Checker will review all of the text on the page, looking for short phrases or strings of text that are 50 characters in length or less that are formatted in a way that suggests they might be being used as headers. Specifically, Accessibility Checker looks for short paragraphs element that are 20 pixels or bigger, or are 16 pixels or bigger and bold and/or italicized.

Why does Accessibility Checker flag a warning for possible headings?

Organizing the content on your page with headings has a number of usability and accessibility benefits described below. Increasing the font size of a phrase that is contained within paragraph (<p>) tags or making it bold or italicized may make that phrase look like a heading to a sighted person who can see the page, but it will not make the phrase a recognizable heading to assistive technology such as screen readers.

Accessibility Checker flags a warning when it believes that a string of text may be being used as a heading to encourage you to check and see if it is, indeed, a heading (rather than a short sentence) and then to retag it with heading tags as needed.

Impact on Accessibility

Why are headings important?

Headings are important for all users. They establish a hierarchy of information, allowing users to more easily find the content they are looking for and to “skim” or move through content more easily. This is even more true for blind and visually impaired users who use screen readers to access your content.

Blind people do not have the ability to visually skim through content, so screen readers will list out the headings on a web page as a way of allowing them to more easily move through your content and find what they’re looking for.

Problems with not having properly coded headings

If your web page has paragraph text that has been styled to look like a heading (I.e., made bigger, bolded, italicized, or changed to a different color or font), you may have improved the readability of the page for people who are sighted and are able to see these changes, but for blind and visually impaired users, it will appear that there are no headings on the page.

In 2017, a WebAIM survey found that 70% of screen reader users preferred to uses headings to find information on lengthy web pages. Many screen readers include keyboard shortcuts to get their screen reader to read out the headings on the page. In NVDA, a popular open-source screen reader, for example, pressing the number keys, 1-6 will result in the screen reader reading all of the headings at that level. A user could press the 2 key on their keyboard and hear all level 2 headings, then select one to jump to that section of the page. If your headings are not properly wrapped in heading tags, this functionality will not work.

Without proper heading tags, it may take a long time for screen reader users to find the information that they are looking for or they may find the content on the page confusing.

Bonus benefit: headings improve search engine optimization

Headings improve search engine optimization (SEO) by highlighting the important parts of the web page and drawing attention to them. A heading 1 or <h1> tag on the page is used by search engines as a primary indicator of what a page is about, and subheadings like <h2> and <h3> are also used by search engines when deciding how to rank the page in search results.

Relevant WCAG 2 Success Criteria

1.3.1 Info and Relationships – Level A 

Information, structure, and relationships conveyed through presentation can be programmatically determined or are available in text.

2.4.1 Bypass Blocks – Level A

A mechanism is available to bypass blocks of content that are repeated on multiple Web pages.

How to Resolve a Possible Heading Warning

What to do (in short)

To fix a Possible Heading warning, you will need to determine if the flagged text is indeed intended to be a heading. If so, you need to change it from a paragraph to a heading at the proper level. If it is not supposed to be a heading then you can safely “Ignore” the warning.

How to find possible headings on your WordPress posts or pages

First, install the free Accessibility Checker WordPress plugin.

For any pages or posts that have a possible heading warning in the WordPress editor, you can open the details tab in the Accessibility Checker meta box, then expand the warning to see a list of paragraph elements that caused the warning to be flagged.

possible heading warnings in WordPress Accessibility Checker scan

In the screenshot above, there are two paragraph tags that are listed under the Possible Heading warning:

<p style="font-size: 24px;">About Us</p>
<p><strong>Why You Should Work With Us</strong></p>

The first item flagged is the phrase “About Us” which has been increased to 24 pixels. The second item flagged is the phrase “Why You Should Work With Us” which has not been made bigger but is bolded. This is how these possible headings look on the page to a sighted visitor:

Two examples of paragraph text that visually looks like headings but is not coded as a heading

On the front end on the website, these look like headings and without inspecting the code, you would never know that a problem exists. As explained above, though, these faux “headings” don’t actually help screen reader users to navigate the website and would need to be corrected.

How to add headings to your post or page content

An HTML heading element is created using an <h> tag with the appropriate heading level. For example, a level one heading, typically used for page titles, uses an <h1> tag. Generally there should be only one <h1> on the page and other headings should use <h2> and lower heading tags.

How you add headings to your content in WordPress depends upon the specific editor configuration on your website. There are detailed instructions on how to add headings in WordPress on the Missing Headings page. Learn how to change paragraphs to headings.

When you’re changing the paragraph tags in your content to heading tags, it’s important the you add your headings in the correct order. Headings are meant to be added to a web page in numerical order to create an outline format. It’s important that you don’t select headings based upon their appearance. Learn more about the importance of heading order.

Primary Sidebar

Real, Proactive Accessibility

Use Accessibility Checker to detect accessibility issues in bulk, whether your WordPress website has ten pages or ten thousand. Never lose track again with real-time scans every time you save, and historical reporting.

Get Accessibility Checker 👈

Frequently Asked Questions

  • How to Install & Activate Accessibility Checker
  • Getting Started Quick Guide
  • Why Do We Say 100% Passed Tests, Not 100% Accessible?
  • Manual Accessibility Testing: How You Can Check Website Accessibility
  • When and How to Ignore Accessibility Errors or Warnings
  • What to do if There are Accessibility Errors in Your Theme
  • What to do if a Plugin You’re Using has Accessibility Errors
  • How to Get Support for Accessibility Checker
  • Can I Hire Equalize Digital to Fix Accessibility Issues on My Website?
  • Additional Resources for Learning About Accessibility
  • How to Test Accessibility Checker for Conflicts with Themes or Plugins
  • What Does “Unlimited Dev Sites” mean?
  • Is there an Accessibility Conformance Report (ACR) or VPAT available for Accessibility Checker?
  • How to Get the Audit History Plugin – Legacy Customer Instructions
  • How does Accessibility Checker align with WCAG?
  • What to do if Accessibility Checker is not Scanning Your Site
  • Known Conflicts
  • Ensuring Accessibility Checker Fixes Work with JavaScript Optimization Plugins

Rule Documentation

  • A Slider is Present
  • A Video is Present
  • Ambiguous Anchor Text
  • ARIA Hidden
  • Blinking or Scrolling Content
  • Broken ARIA Reference
  • Broken Skip or Anchor Link
  • Duplicate Alternative Text
  • Duplicate Form Label
  • Empty Button
  • Empty Heading Tag
  • Empty Link
  • Empty or Missing Form Label
  • Empty or Missing Table Header
  • Empty Paragraph Tag
  • iFrame Missing Title
  • Image Animated GIF
  • Image Empty Alternative Text
  • Image Long Alternative Text
  • Image Map Missing Alternative Text
  • Image Missing Alternative Text
  • Improper Use of Link
  • Incorrect Heading Order
  • Insufficient Color Contrast
  • Link Opens New Window or Tab
  • Link to MS Office File
  • Link to Non-HTML File
  • Link to PDF
  • Linked Image Missing or Empty Alternative Text
  • Long Description Invalid
  • Low-quality Alternative Text
  • Missing Language Declaration
  • Missing Subheadings
  • Missing Title
  • Missing Transcript
  • Possible Heading
  • Readability & Simplified Summary
  • Tab Order Modified
  • Text Justified
  • Text Too Small
  • Underlined Text
  • Zooming and Scaling Disabled

Easier, Faster Accessibility Testing

Equalize Digital Accessibility Checker gives you real-time accessibility feedback in the WordPress editor. Learn accessibility and make fixes earlier in the dev and content creation process. Full-site accessibility scanning without the per page fees.

Get Accessibility Checker

Footer

Equalize Digital Websites for Everyone

Your WordPress accessibility team. Accessibility plugins, rapid audits, and consulting to help you make your website usable by people of all abilities.

  • Facebook
  • GitHub
  • LinkedIn
  • Twitter
  • YouTube

Company

  • About Equalize Digital
  • WordPress Accessibility Meetup
  • Accessibility Statement
  • Blog
  • Events
  • Contact Us

Services

  • Accessibility Audits
  • User Testing
  • Remediation
  • Ongoing Monitoring
  • VPAT & ACR Preparation
  • Accessibility Training
  • For Agencies
  • Website Development

Accessibility Checker

  • Features
  • Pricing
  • Documentation
  • How to Get Support
  • My Account
  • Affiliate Dashboard
  • Become an Affiliate

© 2025 Equalize Digital · Privacy Policy · Terms of Service · Software Terms & Refund Policy

International Association of Accessibility Professionals member

Small Business Accessibility Playbook

Learn how to make your website accessible.

Free Ebook: The Small Business Accessibility Playbook for WordPress by Equalize Digital and WP Buffs.

Get a copy of the free e-book via email.

Name(Required)
This field is hidden when viewing the form
This field is hidden when viewing the form
Privacy Policy(Required)
This field is hidden when viewing the form
This field is for validation purposes and should be left unchanged.