Hello,
I would like to report an issue regarding the HTML heading structure used in single post titles.
Currently, the post title is rendered as:
<h2 class="entry-title">Post Title</h2>
This causes the main article title to appear as an H2 element in the source code instead of H1. From an SEO and semantic HTML perspective, the main content title of a single post should ideally be wrapped in an H1 tag.
Using H2 for the primary post title may lead to suboptimal heading hierarchy, especially for search engines and accessibility tools, since H1 is expected to represent the main page topic.
Suggested improvement
Please consider updating the markup in the next theme update so that:
<h2 class="entry-title">...</h2>
is changed to:
<h1 class="entry-title">...</h1>
This adjustment would improve semantic structure, SEO compliance, and accessibility consistency.
Thank you in advance, and I would appreciate it if this could be addressed in a future update.