WordPressの各記事に、クラス名を追加するpost_class
関数を使用すると、hentry
というクラスが追加されます。
1 |
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
1 |
<article id="post-221" class="post-221 post type-post status-publish format-standard hentry category-tips article"> |
このhentry
とは、HTMLに構造化データを付加するMicroformatsで定義された、個々のエントリを示すクラスです。
しかし、hentry
以外のクラスは自動的に付加されないので、このままでは構造化データとして意味を成しません。
そこで、hentry
以外のクラスを、テンプレートに追加していきます。