WordPress2.7はシンプルなスタイリングを実行するテーマ作家に役立つ記事クラスのための新しい機能が含まれます。関数は、適切に十分な、post_class()と呼ばれます。
WordPress 2.7 includes a new function for post classes, which will help theme authors perform simpler styling. The function is, appropriately enough, called post_class().
テーマにこの関数を使用するには、単純にループに理にかなっている場所に追加されます。ほとんどのテーマは、いくつかに分類されたDIV内の全ての記事をカプセル化します。そのDIVは、通常のclass=”post”のようなものと似ています。そのクラスの代わりに、ただのpost_classの代わりに呼び出して追加します。このように:
[php]To use this function in a theme, you will simply add it to the Loop in a place that makes sense. Most themes encapsulate every post within a DIV of some sort. That DIV usually has a class=”post” or something similar. Instead of that class, just add a call to post_class instead. Like so:
コメント