ページ上のすべての投稿に対してpost_classを「最初に」取得するにはどうすればよいですか。
このコードを使用して、ループの実際の最初の投稿のクラス「first_post」を管理しましたが、ループの2番目、3番目などのページにも必要です。
function.php
function firstpost_class($class) {
global $post, $posts;
if ( is_home() && !is_paged() && ($post == $posts[0]) ) $class[] = 'firstpost';
return $class;
}
add_filter('post_class', 'firstpost_class');
ご協力いただきありがとうございます。グーグルはまだ助けることができませんでした。