このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

Override Post Title with First Content Heading

説明

This plugin is developed at
Shepherd
Interactive
for the benefit of the community. No support is available.
Please post any questions to the support
forum
.

On a singular post/page, normally in The Loop the_title() returns
post_title; if, however, this needs to be overridden so that a
custom content heading is displayed (i.e. for SEO purposes), then an
h1 or h2 element may be supplied at the beginning of
the post_content and the contents of this heading element
will be returned by the_title() instead of post_title.

From a technical perspective, the site title in the main header should be
an h1 element and the page/post title should in an h2
element within an article, per HTML5:

Sections may contain headings of any rank, but authors are strongly
encouraged to either use only `h1` elements, or to use elements of the
appropriate rank for the section’s nesting level.

This is seen in the default WordPress theme and the HTML specifications. However,
SEO places higher priority on the contents of an h1 element, so if
every page of a site has the exact same h1 contents (the site name),
then search engines may not be as likely to rank the page based on the unique
contents of the h2. It has been suggested
therefore that the h1 and the h2 elements be swapped,
so that the site title appears in an h2 and so that the unique page
title appears in the h1. While the specifications don’t prefer this
arrangement, it is not incorrect, also per HTML5:

Both of the documents are semantically identical and would produce the same
outline in compliant user agents.

So if different heading levels are semantically equivalent, and if search
engines really place that much importance on h1, then SEO wins.

In both cases, content section headings should be coded with h3 and
below.

Technical note: If the $post object is not passed into the_title
filter, then the page’s the_title() must be called before every other
the_title() call in_the_loop()

評価

このプラグインにはレビューがありません。

貢献者と開発者

Override Post Title with First Content Heading はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“Override Post Title with First Content Heading” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

2009-10-08: 0.2.5

  • Restricting first content heading searched for to be either h1 or h2, for SEO purposes.

2009-09-28: 0.2.4

  • Initial release