
Should a Second Title on a Blog Be H1 or H2?
A second title or major subheading within a blog post should usually be an H2 tag. The H1 identifies the page’s main subject, while H2 headings divide the article into its principal sections.
The practical answer to “second title blog H1 or H2” depends on what “second title” means. A section heading belongs in an H2. A short subtitle directly beneath the main title may be better formatted as ordinary paragraph text rather than as another heading.
Essential Concepts
- Use one clear H1 for the blog post title.
- Use H2 tags for major sections beneath the title.
- Use H3 tags for subsections within an H2 section.
- Format a descriptive subtitle as paragraph text if it does not introduce a section.
- Multiple H1 tags do not automatically cause an SEO penalty, but one H1 usually creates a clearer page structure.
The H1 Identifies the Main Page Topic
The H1 is the highest-level heading in an HTML document. On a standard blog post, it normally contains the article title.
For example:
<h1>How to Start a Vegetable Garden</h1>
That heading tells readers, search engines, browsers, and assistive technologies what the page is primarily about. Most WordPress themes assign the H1 tag to the post title automatically, so authors rarely need to add an H1 inside the editor.
Using a second H1 within the article can make the document structure less clear. It suggests that the page contains another subject at the same level as the main article title. In most blog posts, that is not the intended relationship.
A single, descriptive H1 remains a sensible editorial convention even though modern HTML permits more flexible heading patterns. Search engines do not generally treat an accidental second H1 as a serious violation. Still, technical permission is not the same as good information architecture.
Use H2 for a Second Headline That Introduces a Section

An H2 should introduce each major section directly beneath the H1. This creates a visible and semantic outline.
A typical blog heading hierarchy looks like this:
<h1>How to Start a Vegetable Garden</h1>
<h2>Choose a Suitable Location</h2>
<h2>Prepare the Soil</h2>
<h3>Test the Soil</h3>
<h3>Add Organic Matter</h3>
<h2>Select Vegetables for the Season</h2>
“Prepare the Soil” is an H2 because it begins a primary section of the article. “Test the Soil” and “Add Organic Matter” are H3 headings because they divide that H2 section into smaller topics.
This H1-to-H2-to-H3 pattern creates a logical blog heading hierarchy. Readers can scan the article and identify its major parts without reading every paragraph. Screen-reader users can also move among headings to understand the document’s organization.
Productive Blogging’s guidance on H tags likewise recommends one H1 for the post title and H2 tags for the main sections.
A Subtitle Beneath the H1 May Not Need an H2
Not every second line beneath a blog title is a section heading. Publishers often place a subtitle, deck, or explanatory sentence directly beneath the H1.
Consider this example:
How to Start a Vegetable Garden
A practical guide to site selection, soil preparation, and seasonal planting
The second line describes the entire article. It does not begin a new section. Marking it as an H2 could falsely suggest that all subsequent content belongs under that heading.
A paragraph element often provides more accurate HTML:
<h1>How to Start a Vegetable Garden</h1>
<p class="article-subtitle">
A practical guide to site selection, soil preparation, and seasonal planting
</p>
The theme can style the subtitle with larger type, a different color, or added spacing. Visual prominence does not require a heading tag. HTML elements should describe the function of the content, not merely its appearance.
Use an H2 when the second headline introduces a section. Use paragraph text when the line serves as a summary, deck, or explanatory subtitle.
H1 vs. H2 SEO Is Mostly About Structure
Discussions of H1 vs. H2 SEO sometimes assign too much direct ranking power to individual heading tags. Search engines use headings as contextual signals, but an H2 does not produce a predictable ranking increase simply because a keyword appears in it.
Headings contribute to search performance indirectly by organizing information. A precise heading can clarify the subject of a section, make an answer easier to locate, and reduce the effort required to scan a long post. Search systems can also use the heading and its associated paragraphs to interpret the page.
An effective heading describes the content that follows:
H2: How Long Tomato Seeds Take to Germinate
A weak heading provides little context:
H2: Timing
Keywords may appear in headings when they accurately identify the section. Repeating an exact phrase in every H2 makes the article awkward and adds little semantic value.
The H1 tag SEO question follows the same principle. A clear H1 should name the article’s subject in ordinary language. It need not contain every related search phrase.
Multiple H1 Tags Are Usually a Structural Problem, Not a Penalty

The claim that every page must contain exactly one H1 is often presented as an absolute technical rule. Modern HTML can accommodate multiple H1 elements in some document structures, and search engines can process pages containing them.
For an ordinary WordPress article, however, multiple H1 tags rarely improve the page. They often appear because of one of these mistakes:
- The post title is already an H1, and the author manually adds another H1 in the editor.
- A page builder assigns H1 to a decorative banner.
- The site logo or name receives an H1 on every post.
- A reusable block contains a heading with the wrong level.
- Heading levels are chosen for font size rather than document structure.
Multiple H1 tags do not automatically trigger a Google penalty. The larger concern is ambiguity. A page with several equally prominent headings may present a less coherent outline to readers and assistive technology.
Site owners who discover multiple H1 tags should identify what each heading represents. Keep the article title as the H1, then change major internal headings to H2. Decorative text should normally use a paragraph, div, or other suitable element with CSS styling.
WordPress Heading Structure Requires Theme Awareness
WordPress normally renders the post title outside the block editor. The title may not appear inside the editable article body, but it can still become the page’s H1 when the post is published.
Inside the WordPress editor, the first major section should therefore use H2. Selecting H1 for the first content heading may create a second H1 on the published page.
A sound WordPress heading structure commonly follows this pattern:
- Post title generated by the theme: H1
- Main article sections: H2
- Subsections within those sections: H3
- Smaller divisions within an H3 section: H4
Heading levels should reflect content relationships. Do not choose H4 merely because its default font size looks preferable. CSS controls appearance; HTML controls meaning.
Theme behavior varies. A custom theme or page builder might not assign H1 to the post title. The published page’s HTML, rather than the editor alone, provides the reliable answer. Browser developer tools or an accessibility inspection extension can reveal the final heading levels.
Skipping Heading Levels Can Confuse the Article Outline
A direct jump from H1 to H3 leaves an absent structural level. Browsers still display the page, and search engines can usually interpret
Discover more from Life Happens!
Subscribe to get the latest posts sent to your email.

