Description:
The Post Content field is implemented using an iframe. This approach causes accessibility issues:
Recommendation:
- At minimum, add the
aria-invalid attribute to the post content field when it is left empty.
- Ideally, replace the iframe with a proper
<textarea> element that includes:
aria-label to describe the field,
aria-invalid to indicate errors,
aria-describedby linked to error messages for better context.
Action Needed:
- Implement
aria-invalid on the post content field to improve accessibility for screen readers.
Post Content fields

Description:
The Post Content field is implemented using an iframe. This approach causes accessibility issues:
Screen Reader Compatibility:
Implementation Concerns:
<input>or<textarea>, which limits the use of important ARIA attributes likearia-label,aria-invalid, andaria-describedby.Recommendation:
aria-invalidattribute to the post content field when it is left empty.<textarea>element that includes:aria-labelto describe the field,aria-invalidto indicate errors,aria-describedbylinked to error messages for better context.Action Needed:
aria-invalidon the post content field to improve accessibility for screen readers.Post Content fields