<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Topic: Why is h1 not used in most themes?</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Topic: Why is h1 not used in most themes?</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 11:19:41 +0000</pubDate>

<item>
<title>leetramp on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1160379</link>
<pubDate>Sun, 02 Aug 2009 19:22:02 +0000</pubDate>
<dc:creator>leetramp</dc:creator>
<guid isPermaLink="false">1160379@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Good thread. I try to write my pages with users of screen readers in mind (which is largely equivalent to search engine bots). Here's my question:&#60;/p&#62;
&#60;p&#62;I like having H1 be the blog name on my home page, and the posts on it as H2. (Fine, done, easy.)&#60;/p&#62;
&#60;p&#62;On post pages, I want the post title to be the H1 (easy, done), but now I'm unclear how to handle the blog name on these pages. I'm stuck on trying to picture it in a magazine or newspaper: If I'm flipping through the paper, the title of the article is the headline of the page, and the title of the publication appears much smaller. But in blogs, the title of the blog appears at the top (no argument with that). So, I'm still emphasizing the post title with H1, but the title of the blog doesn't seem like any header level. Does anyone have any success or suggestions in handling this?&#60;/p&#62;
&#60;p&#62;My inclination is to create a div with the title &#34;Blog title.&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>mercime on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1110742</link>
<pubDate>Sat, 20 Jun 2009 09:03:08 +0000</pubDate>
<dc:creator>mercime</dc:creator>
<guid isPermaLink="false">1110742@http://wordpress.org/support/</guid>
<description>&#60;p&#62;If there is a theme update and you upload it, definitely yes because your old theme's style.css will be overwritten by the new one. You will just need to keep notes of what changes you made to your style.css for future reference. Who knows, the theme author might include adding h1 tag in his updated version :-) WP version update will not overwrite your theme file.
&#60;/p&#62;</description>
</item>
<item>
<title>tcwaters on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1109353</link>
<pubDate>Fri, 19 Jun 2009 02:30:31 +0000</pubDate>
<dc:creator>tcwaters</dc:creator>
<guid isPermaLink="false">1109353@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Mercime- If I make this change, is it something that will be overwritten with a theme update of a wordpress update?
&#60;/p&#62;</description>
</item>
<item>
<title>mercime on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1108056</link>
<pubDate>Thu, 18 Jun 2009 04:15:15 +0000</pubDate>
<dc:creator>mercime</dc:creator>
<guid isPermaLink="false">1108056@http://wordpress.org/support/</guid>
<description>&#60;p&#62;If you still want to use the iNove theme, you can still make it&#60;br /&#62;
In style.css you can copy all declarations of&#60;br /&#62;
.post h2 , .post h2 a.title  , .post h2 a.title:hover , .post h2 .act a&#60;br /&#62;
and paste to new declarations in style.css&#60;br /&#62;
.post h1 , .post h1 a.title , .post h1 a.title:hover , .post h1 .act a&#60;br /&#62;
Then replace all instances of h2 in post area title with h1 like so:&#60;br /&#62;
&#60;code&#62;&#38;lt;h2&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h2&#38;gt;&#60;/code&#62;&#60;br /&#62;
to&#60;br /&#62;
&#60;code&#62;&#38;lt;h1&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;While it's true that Google may not be as strict re structural or semantic markups, having h1 for title of post is a very good thing and I swear by it :-) Good luck.
&#60;/p&#62;</description>
</item>
<item>
<title>tcwaters on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1108022</link>
<pubDate>Thu, 18 Jun 2009 03:24:49 +0000</pubDate>
<dc:creator>tcwaters</dc:creator>
<guid isPermaLink="false">1108022@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks and I appreciate al of these comments. My thoughts would have been alinged completely with mercime. But I believe my chosen theme, iNove, doesn't do that unless I am misunderstanding it. &#60;/p&#62;
&#60;p&#62;As per eyko- yes, this is how my chosen theme is behaving. From an SEO perspective doesn't that mean that blog entries are less likely indexed as they are h2? Maybe not.
&#60;/p&#62;</description>
</item>
<item>
<title>eyko on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1102955</link>
<pubDate>Sun, 14 Jun 2009 08:45:48 +0000</pubDate>
<dc:creator>eyko</dc:creator>
<guid isPermaLink="false">1102955@http://wordpress.org/support/</guid>
<description>&#60;p&#62;You can always modify an existing theme to use it, or create yours. But as they said, SEO wise it's not good to have more than one &#38;lt;h1&#38;gt; per page. It's like, what's the title of this document? If the &#38;lt;title&#38;gt; tag has the page title *and* the page name, then the &#38;lt;h1&#38;gt; tag will only have the title (maybe with a subtitle). That way, indexing will be more meaningful. &#60;/p&#62;
&#60;p&#62;Every other header for the page (like an index in a blog page has various headers, for *each post*) will be a &#38;lt;h2&#38;gt;. Maybe this is what you're saying... but it is perfectly logical: the index/homepage with a list of posts should not use &#38;lt;h1&#38;gt; for everypost, because the Home page should be titled whatever your blog is titled, so the index.php template (or whatever other template you use for home page) should use &#38;lt;h1&#38;gt; in blog title or the relevant place. In single.php on the other hand, the &#38;lt;h1&#38;gt; will be the title of &#60;em&#62;that&#60;/em&#62; post...
&#60;/p&#62;</description>
</item>
<item>
<title>mercime on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1102781</link>
<pubDate>Sun, 14 Jun 2009 04:27:27 +0000</pubDate>
<dc:creator>mercime</dc:creator>
<guid isPermaLink="false">1102781@http://wordpress.org/support/</guid>
<description>&#60;p&#62;@esmi - no heresy in using 2 h1 tags - my personal preference is to use only one h1 for each webpage. I use h2 to highlight different sub-headings of the main content which better than using the &#60;strong&#62;strong&#60;/strong&#62; tag. On the other hand, regular bloggers might not know about semantic or structural markups, so what they don't know might not hurt them .. in the end, content is queen.
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1102554</link>
<pubDate>Sat, 13 Jun 2009 22:59:18 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1102554@http://wordpress.org/support/</guid>
<description>&#60;p&#62;There was a major discussion on this in &#60;a href=&#34;http://www.gawds.org/&#34;&#62;GAWDS&#60;/a&#62; (which includes a number of very senior SEO types) about 2 years ago and the consensus of opinion was that using 2 H1 tags on a page was not heresy, was still semantically correct and would not adversely impact PR. In fact, it could even improve PR if used in the way that mercime suggests.&#60;/p&#62;
&#60;p&#62;@mercime: If using H1 for the blog title and H2 for post titles, I prefer to use H2 on nav menus. Otherwise the logic structure would imply that the nav items are sub-sections of the page when, in fact, they relate to the entire site
&#60;/p&#62;</description>
</item>
<item>
<title>mercime on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1102488</link>
<pubDate>Sat, 13 Jun 2009 22:03:24 +0000</pubDate>
<dc:creator>mercime</dc:creator>
<guid isPermaLink="false">1102488@http://wordpress.org/support/</guid>
<description>&#60;p&#62;My $0.02 CSS Basics - &#60;strong&#62;h1 &#60;/strong&#62;should be applied to&#60;br /&#62;
- Title of Post in single.php e.g.&#60;code&#62;&#38;lt;h1&#38;gt;My Sweet WordPress&#38;lt;/h1&#38;gt;&#60;/code&#62; with h2 and h3 headings in content where applicable&#60;br /&#62;
- Title of archive.php or category.php e.g. &#60;code&#62;&#38;lt;h1&#38;gt;Archive for Entertainment&#38;lt;/h1&#38;gt;&#60;/code&#62; with list of post titles in h2&#60;br /&#62;
- Title of main headline in index.php or home.php e.g. Breaking News: &#60;code&#62;&#38;lt;h1&#38;gt;5,000,000 New Jobs In Kalamazoo&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;br /&#62;
Note: h3/h4 better used in sidebars&#60;br /&#62;
Cheers
&#60;/p&#62;</description>
</item>
<item>
<title>equaldesign on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1102458</link>
<pubDate>Sat, 13 Jun 2009 21:43:44 +0000</pubDate>
<dc:creator>equaldesign</dc:creator>
<guid isPermaLink="false">1102458@http://wordpress.org/support/</guid>
<description>&#60;p&#62;@esmi&#60;/p&#62;
&#60;p&#62;That is basic SEO knowledge as far as I an others are concerned.  H tags are important in terms of SEO with H1 being the main keyword in the page and then h2 being more important than H3, h3 being more important than h4 and so on.
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1101106</link>
<pubDate>Fri, 12 Jun 2009 20:25:45 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1101106@http://wordpress.org/support/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;That is best practice SEO wise. &#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Sez who? ;-)&#60;/p&#62;
&#60;p&#62;It's perfectly legitimate to have 2 &#60;code&#62;H1&#60;/code&#62; tags on a page. It really depends upon how you view the primary heading tag in the overall architecture of the site.
&#60;/p&#62;</description>
</item>
<item>
<title>equaldesign on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1101065</link>
<pubDate>Fri, 12 Jun 2009 20:02:36 +0000</pubDate>
<dc:creator>equaldesign</dc:creator>
<guid isPermaLink="false">1101065@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Well basically the heading tags should go from 1 at the top of your page and then get lower as you read down the page.  This usually means that the blogs title in the header is h1 then the post/page titles are h2 and the sidebar titles are h3.  That is best practice SEO wise.
&#60;/p&#62;</description>
</item>
<item>
<title>tcwaters on "Why is h1 not used in most themes?"</title>
<link>http://wordpress.org/support/topic/279284#post-1100996</link>
<pubDate>Fri, 12 Jun 2009 19:18:15 +0000</pubDate>
<dc:creator>tcwaters</dc:creator>
<guid isPermaLink="false">1100996@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I read a blog post about things that influence Google indexing, and one of them was the use of h1 tags for headlines. But it seems to me that most (?? all??) WP themes use h2 for that instead of h1. Why is that? h1 isn't that important?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
