আপনি নিখুঁত একটি ওয়ার্ডপ্রেস পেজ তৈরি করতে ঘণ্টার পর ঘণ্টা ব্যয় করেছেন। কন্টেন্টটি বেশ ভালো। কিওয়ার্ডগুলো বসানো হয়েছে। আপনার এসইও প্লাগইন একটি সবুজ টিক চিহ্ন দেখাচ্ছে।
But open your browser’s developer tools and inspect the heading structure, and you’ll see something that can quietly kill your organic traffic: a broken heading hierarchy. Two H1s. A site title wrapped in `<h1>`. Sections jumping from H2 straight to H4. Or worse — no H1 at all.
This isn’t a শিক্ষানবিশ ভুল. It’s a কাঠামোগত সমস্যা baked into how WordPress, themes, page builders, and the Gutenberg editor interact — and most site owners never know it’s happening.
This guide exists to fix that. Whether you’re a WordPress site owner managing your own content, or an agency building sites for dozens of clients, you’ll leave here knowing exactly how to অডিট, নির্ণয় এবং স্থায়ীভাবে সমাধান করতে হয় ওয়ার্ডপ্রেসের হেডিং ক্রমের সমস্যা।
H1 ট্যাগ কী এবং ওয়ার্ডপ্রেসে এটি কেন গুরুত্বপূর্ণ?
An H1 tag (<h1>) is the top-level HTML heading element. In semantic HTML, it signals to browsers, search engines, and assistive technologies: “This is the primary topic of this page.”
হেডিং ট্যাগগুলোকে একটি নথির রূপরেখা হিসেবে ভাবুন:
H1 – Main page title (only one per page)
├── H2 – First major section
│ ├── H3 – Subsection
│ └── H3 – Another subsection
├── H2 – Second major section
│ ├── H3 – Subsection
│ │ └── H4 – Detail within subsection
└── H2 – Third major section
Skip a level — jumping from H2 to H4 — and you break the outline. Use two H1s and you create structural ambiguity. Use H3 tags for visual styling and you introduce ghost headings that confuse crawlers.
In WordPress specifically, this gets complicated fast. Unlike a static HTML page where you write every tag manually, WordPress generates heading markup from at least four different sources simultaneously: the theme’s header template, the post title, the editor content, and any widgets or page builder modules you’ve added.
H1 ট্যাগ সম্পর্কে গুগল আসলে কী বলে
Let’s settle the র্যাঙ্কিং বিতর্ক শুরুতেই মিটিয়ে ফেলি।
In July 2026, Google’s Gary Illyes addressed this directly during the SEO Office Hours podcast: arranging headings in semantic order is genuinely helpful for accessibility (especially screen reader users), but it doesn’t significantly impact Google’s ranking algorithms. John Mueller has also stated that multiple H1 tags on a page don’t confuse crawlers and have zero direct SEO impact.
তাহলে এর কোনো গুরুত্ব আছে কি?
Yes — but not for the reason most SEO guides say.
ওয়ার্ডপ্রেসে হেডিং স্ট্রাকচার বা শিরোনামের গঠন নিয়ে ভাবার আসল কারণগুলো হলো:
- অ্যাক্সেসিবিলিটি কমপ্লায়েন্স — WCAG 2.1 success criterion 1.3.1 requires information and relationships to be programmatically determinable. Broken heading hierarchies fail this.
- ক্রলিবিলিটি এবং কন্টেন্ট সিগন্যাল — While Google can parse messy markup, a clean H1 gives the clearest possible signal about page topic, which matters in ambiguous cases.
- ব্যবহারকারীর অভিজ্ঞতা এবং ডওয়েল টাইম — Readers scan headings. A logical hierarchy helps them navigate and stay longer — both indirect ranking signals.
- টেকনিক্যাল অডিট পরিচ্ছন্নতা — For agencies, heading issues surface in every audit tool (Screaming Frog, Ahrefs, SEMrush, Rank Math, Yoast). Client-facing reports look bad even if the direct ranking impact is debated.
ওয়ার্ডপ্রেস কীভাবে হেডিং ট্যাগ তৈরি করে: দ্বন্দ্বের চারটি উৎস
বোঝা কেন ওয়ার্ডপ্রেসের হেডিং স্ট্রাকচার কেন ভেঙে যায় তা বোঝার জন্য এটি যে চারটি জায়গা থেকে হেডিং তৈরি করে তা জানা প্রয়োজন।
Source 1: The Theme’s Header Template
Most WordPress themes output the site title in the header area. Older and poorly coded themes wrap this in an <h1> tag — on every single page. This means every page on your site starts with the same H1: your brand name.
তারপর, যখন পৃষ্ঠা বা পোস্টের শিরোনাম রেন্ডার হয় (যা হওয়া উচিত H1), তখন এটি হয় দ্বিতীয় H1 হয়ে যায় অথবা H2-তে অবনমিত হয়।
Here’s what this looks like in a broken theme’s header.php:
php
// Broken — site title as H1 on every page
<h1><?php bloginfo('name'); ?></h1>
<h2><?php the_title(); ?></h2> // Post title wrongly demoted
এটি দেখতে কেমন হওয়া উচিত:
php
// Correct — site title is a link or span, post title is H1
<p class="site-title"><a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a></p>
<h1><?php the_title(); ?></h1>
This is one of the most common WordPress H1 issues and it’s entirely invisible unless you inspect the page source. You can have an SEO plugin, a green readability score, and নিখুঁত কন্টেন্ট — and still be outputting duplicate H1s on every page.
উৎস ২: গুটেনবার্গ ব্লক এডিটর
The WordPress block editor introduced deliberate changes to H1 behavior. By default, Gutenberg de-emphasizes the H1 option in the Heading block — the assumption is that the post title is already rendering as H1, so content-area headings should start at H2.
বাস্তবে, এটি দুটি সমস্যার সৃষ্টি করে:
সমস্যা ক: কিছু থিম না output the post title as H1. If your theme renders the title in a <div> or <h2> for stylistic reasons, and Gutenberg has hidden H1 from the heading block options, you end up with zero H1 tags on the page.
This is exactly the situation flagged in a long-running GitHub issue in the Gutenberg repository — users requesting the ability to remove the H1 option entirely for enterprise and agency setups where the H1 is controlled at the template level. The issue highlights real confusion: the editor’s default behavior and the theme’s template need to be explicitly coordinated, but WordPress provides no automated check for this.
সমস্যা খ: Content editors can still select H1 in the block editor by changing the heading level. If your theme already outputs the post title as H1, an editor adding another H1 block inside the content area creates a duplicate — and no warning appears.
উৎস ৩: পেজ বিল্ডার (Elementor, Divi, Beaver Builder)
ওয়ার্ডপ্রেসে হেডিং হায়ারার্কির বিশৃঙ্খলার সবচেয়ে বড় উৎস হলো পেজ বিল্ডার।
Here’s why: page builders give you granular visual control. You can drag a text element anywhere, style it any way, and assign any heading level. This is powerful for design. It’s disastrous for structure.
সাধারণ পেজ বিল্ডার হেডিং সমস্যাটি দেখতে এমন হয়:
- হিরো সেকশন: H1 (সঠিক) ✓
- Feature section title: H3 (skipped H2, chosen because it “looks better”) ✗
- উইজেট এরিয়া শিরোনাম: H2 (সেকশন হেডিংয়ের মতো দেখায়, কিন্তু এটি কেবল একটি সাইডবার উইজেট শিরোনাম) ✗
- টেস্টিমোনিয়াল হেডিং: H4 (এর উপরে কোনো H3 নেই) ✗
- CTA হেডিং: H2 (আবার উচ্চতর লেভেলে ফিরে আসা, এখন আউটলাইনটি সম্পূর্ণ অ-রৈখিক) ✗
The result is a heading structure that’s visually coherent but semantically meaningless. Screen readers and crawlers parsing this get a content outline that jumps around like a broken table of contents.
InspectWP’s documentation identifies this pattern explicitly: authors and page builder users choose heading levels based on how they চেহারার rather than their logical meaning — if H3 is the right visual size, they select H3, even with no H2 above it.
উৎস ৪: উইজেট এবং থিম কম্পোনেন্ট
WordPress widget areas — sidebars, footers, header modules — often output their own headings. A “Recent Posts” widget might render as H2. A promotional banner built into the theme might use H3. None of these are part of the content outline, but they appear in the page’s heading structure.
This creates heading “noise” that inflates the apparent complexity of the outline and can push content headings out of their correct hierarchical position.
ওয়ার্ডপ্রেসের ৫টি সাধারণ H1 এবং শিরোনাম অনুক্রমের সমস্যা
সমস্যা ১: সাইটের শিরোনাম প্রতিটি পৃষ্ঠায় H1-এ মোড়ানো থাকে
এটি দেখতে কেমন: Every page on your site has two H1s — your site name and your post title.
এটি কাদের প্রভাবিত করে: Sites using older themes, poorly built premium themes, or any theme where the developer used <h1> for the site branding.
এটি কীভাবে শনাক্ত করবেন: Right-click any page → Inspect → search for <h1 in the Elements panel. If you see your site name wrapped in H1 in the <header> section, you have this problem.
এটি কীভাবে ঠিক করবেন:
বিকল্প ১: চাইল্ড থিম এডিট (ডেভেলপার পদ্ধতি) In your child theme’s header.php, find the site title output and change it from <h1> to <p> or <span> with appropriate classes:
php
<p class="site-title">
<a href="<?php echo esc_url(home_url('/')); ?>" rel="home">
<?php bloginfo('name'); ?>
</a>
</p>
বিকল্প ২: CSS + aria-label (কোড ছাড়া সমাধান) If you can’t edit theme files, use CSS to reset the H1 styling on the site title:
css
.site-header h1.site-title {
font-size: inherit;
font-weight: inherit;
margin: 0;
}
দ্রষ্টব্য: এটি দৃশ্যমান H1 problem but doesn’t fix the structural issue. The H1 tag remains in the markup.
বিকল্প ৩: একটি সুগঠিত থিমে স্যুইচ করুন Themes following WordPress coding standards (Twenty Twenty-Four, Kadence, GeneratePress, Astra) handle this correctly out of the box. If your current theme has this issue and you’re not a developer, switching is often the most reliable fix.
সমস্যা ২: হোমপেজে H1 অনুপস্থিত
এটি দেখতে কেমন: Your homepage has zero H1 tags. SEO plugins report “No H1 found.”
এটি কাদের প্রভাবিত করে: Sites that use a logo image for branding (hiding the site title), sites using a static front page with no title visible, or sites where the theme’s homepage template doesn’t call the_title().
This is a real and recurring issue in the WordPress support forums. The cause is typically this sequence: the site title is set to display in the header, but the user hides it (or replaces it with a logo), removing the only H1 from the page. Since the homepage often doesn’t have a “post title” in the way a blog post does, there’s no automatic H1 generated.
এটি কীভাবে ঠিক করবেন:
বিশেষ করে হোমপেজের জন্য: আপনার হিরো সেকশন বা পেজ টেমপ্লেটে একটি H1 যোগ করুন। এটি হতে পারে:
- A visible heading (“Your Business Name | Service Category”) that also functions as the H1
- CSS-এর মাধ্যমে যোগ করা একটি দৃশ্যত লুকানো H1 (
position: absolute; clip: rect(0 0 0 0);) যা ভিজ্যুয়াল ডিজাইন নষ্ট না করেই সেমান্টিক মার্কার প্রদান করে
গুটেনবার্গে: আপনার হোমপেজ কন্টেন্টের শীর্ষে একটি হেডিং ব্লক যোগ করুন, এটিকে H1 হিসেবে সেট করুন এবং আপনার হিরো মেসেজিংয়ের অংশ করুন।
সমস্যা ৩: কন্টেন্টে শিরোনামের স্তর বাদ পড়া
এটি দেখতে কেমন: কন্টেন্টের কাঠামো H2 থেকে সরাসরি H4-এ, অথবা H1 থেকে সরাসরি H3-এ লাফ দেয়।
এটি কাদের প্রভাবিত করে: যে কেউ দীর্ঘ কন্টেন্ট লেখার সময় সেমান্টিক কাঠামোর পরিবর্তে ভিজ্যুয়াল স্টাইলিংয়ের জন্য শিরোনাম ব্যবহার করেন।
এটি কেন গুরুত্বপূর্ণ: As InspectWP notes, skipping heading levels happens when authors choose levels based on appearance — the H3 looks right, so they use H3, regardless of whether an H2 precedes it.
গুটেনবার্গে এটি কীভাবে শনাক্ত করবেন: ব্লক এডিটরের উপরের টুলবারে থাকা ইনফো আইকনে (ⓘ) ক্লিক করুন। ডকুমেন্ট আউটলাইন প্যানেল প্রতিটি শিরোনাম ক্রমানুসারে দেখায় এবং বাদ পড়া স্তরগুলোকে সতর্কবার্তা দিয়ে চিহ্নিত করে।
এটি কীভাবে ঠিক করবেন:
- প্রকাশ করার আগে ডকুমেন্ট আউটলাইন ব্যবহার করে আপনার শিরোনামের কাঠামো অডিট করুন
- Set a content style guide for your team: H2 for major sections, H3 for subsections, H4 for sub-subsections — never skip levels
- Use Yoast SEO or Rank Math’s content analysis — both flag heading structure issues
সমস্যা ৪: পেজ বিল্ডার থেকে একাধিক H1 ট্যাগ
এটি দেখতে কেমন: A page built with Elementor or Divi has three or four H1 tags because each major section has its own hero-style “H1” headline.
এটি কীভাবে ঠিক করবেন:
In Elementor: Edit each heading widget → check the HTML Tag setting → set only the primary page title to H1, and change all others to H2 or H3 as appropriate.
In Divi: Edit heading modules → under Advanced → HTML Tag → change to the correct semantic level.
In Beaver Builder: Each heading module has a “Heading Tag” setting in the Style tab. Audit each one.
সমস্যা ৫: গুটেনবার্গের H1 দৃশ্যমানতার সমস্যা
এটি দেখতে কেমন: Your theme doesn’t output the post title as H1, and Gutenberg has hidden the H1 option in the Heading block. Your pages have no H1.
এটি কীভাবে ঠিক করবেন:
For developers managing a site where the H1 must be placed inside the content area, you can restore the H1 option using a filter in your theme’s functions.php:
php
// Allow H1 in the Heading block
add_filter( 'allowed_block_types_all', function( $allowed_blocks ) {
return $allowed_blocks;
});
Alternatively, switch to the “Edit as HTML” view for the Heading block and manually set <h1> in the markup.
এজেন্সি সেটআপের জন্য যেখানে আপনি চান প্রতিরোধ করতে সম্পাদকদের H1 যোগ করা থেকে (কারণ টেমপ্লেট এটি নিয়ন্ত্রণ করে), ব্যবহার করুন block_editor_settings_all এডিটরে হেডিং লেভেল সীমাবদ্ধ করার জন্য ফিল্টার।
কিভাবে আপনার ওয়ার্ডপ্রেস হেডিং স্ট্রাকচার অডিট করবেন (ধাপে ধাপে)
পদ্ধতি ১: SkySEOManager ফ্রি প্লাগইন
ব্যবহার করুন SkySEOManager প্লাগইন ইনবিল্ট এসইও অ্যানালাইজার হেডলাইন সম্পর্কিত সমস্ত সমস্যা খুঁজে বের করতে।
আমাদের সম্পূর্ণ গাইড পড়ুন: সমস্ত এসইও সমস্যার জন্য SkySEOManager ব্যবহার করে কিভাবে আপনার ওয়ার্ডপ্রেস সাইট অডিট করবেন
পদ্ধতি ২: Siteskyline ফ্রি এসইও অ্যানালাইজার ব্যবহার করুন
ভিজিট করুন ফ্রি এসইও অ্যানালাইজার এবং আপনার ইউআরএল লিখুন এবং এখন বিশ্লেষণ করুন ক্লিক করুন।
It’ll Show you all issue with your headline tags.

ওয়ার্ডপ্রেস H1 হায়ারার্কি: এজেন্সি চেকলিস্ট
If you’re building or maintaining WordPress sites for clients, heading structure needs to be part of your pre-launch and ongoing audit process. Here’s a repeatable checklist:
থিম লেভেলে:
- Site title in header is NOT wrapped in <h1> (use <p>, <span>, or <div>)
- Post/page title renders as <h1> in <article> or <main> on all post types
- Homepage has exactly one <h1> — either from the site title or the hero section
- Archive pages (category, tag, author) have a descriptive <h1>
- 404 page has an <h1>
কন্টেন্ট লেভেলে:
- Each page has exactly one <h1> in the content area (or zero if the theme handles it via the title)
- Major sections use <h2>
- Subsections use <h3> nested within <h2> sections
- কোনো হেডিং লেভেল বাদ দেওয়া হয় না
- হেডিং শুধুমাত্র ভিজ্যুয়াল স্টাইলিংয়ের জন্য ব্যবহৃত হয় না
প্লাগইন/বিল্ডার লেভেলে:
- Elementor/Divi/Beaver Builder হেডিং এলিমেন্টগুলিতে সঠিক HTML ট্যাগ সেটিংস রয়েছে
- Widget areas don’t output accidental H1 or H2 tags
- এসইও প্লাগইন H1 সতর্কতাগুলি সমস্ত মূল পৃষ্ঠায় সমাধান করা হয়েছে
The Correct WordPress Heading Hierarchy — By Page Type
One pattern doesn’t fit every WordPress page type. Here’s the correct structure for each:
ব্লগ পোস্ট / একক পোস্ট পৃষ্ঠা
H1: Post Title (output by theme automatically)
H2: First major section
H3: Subsection
H3: Another subsection
H2: Second major section
H3: Subsection
H4: Detail
H2: Third major section
হোমপেজ (স্ট্যাটিক ফ্রন্ট পেজ)
H1: Primary value proposition or page headline
H2: Service category or feature group
H3: Individual service or feature
H2: Testimonials or social proof section
H2: Call to action section
উুকমার্স প্রোডাক্ট পেজ
H1: Product name (output by WooCommerce template)
H2: Product description heading
H2: Reviews
H2: Related products
বিভাগ / আর্কাইভ পৃষ্ঠা
H1: Category name (e.g., "WordPress SEO Articles")
H2: Post title within loop (if posts are displayed with headings)
সাধারণ ভুল যা ওয়ার্ডপ্রেস H1 কাঠামো ভেঙে দেয়
ভুল ১: টেক্সট স্টাইল করতে হেডিং ট্যাগ ব্যবহার করা If you want large bold text that isn’t a section heading, don’t use H2. Add a CSS class to a <p> or <div> and style it visually. Using heading tags for aesthetics pollutes your structural outline.
ভুল ২: সম্পাদকদের দৃষ্টি দেখে হেডিং লেভেল বেছে নিতে দেওয়া একটি কন্টেন্ট স্টাইল গাইড ছাড়া, সম্পাদকরা স্বাভাবিকভাবেই সেই হেডিং লেভেলগুলির দিকে ঝুঁকবেন যা চেহারার right. A brief internal guide — “H2 for sections, H3 for subsections, never use H1 in content” — prevents most issues.
ভুল ৩: হেডিং স্ট্রাকচার চেক না করে ওয়ার্ডপ্রেস থিম ইনস্টল করা সব প্রিমিয়াম ওয়ার্ডপ্রেস থিম সঠিক হেডিং মার্কআপ আউটপুট করে না। একটি থিম বেছে নেওয়ার আগে, একটি ডেমো পোস্ট পরিদর্শন করুন: পোস্টের শিরোনাম কি H1 হিসেবে রেন্ডার হয়? সাইটের শিরোনাম কি অভ্যন্তরীণ পৃষ্ঠাগুলিতে H1 হওয়া এড়ায়?
ভুল ৪: আপনার এসইও প্লাগইন সবকিছু কভার করে বলে ধরে নেওয়া Yoast and Rank Math check the post you’re editing. They don’t catch heading issues introduced by your theme’s header template, footer widgets, or archive page templates. A manual audit or Screaming Frog crawl is still necessary.
ভুল ৫: HTML কাঠামোর পরিবর্তে দৃশ্যমান চেহারা ঠিক করা The most common “fix” for the site title H1 problem is adding CSS to make it look smaller. That hides the problem visually but leaves the broken markup in place. Fix the HTML tag, not just the style.



