コード内容：1つ目の記事にclass 属性「first」を追加するフィルターの例
コードの記述先：functions.php
-------------------------------------------------------
<?php
function first_post( $classes ) {
    if( ! is_singular() ) {
        global $wp_query;
        if( $wp_query->current_post === 0 ) {
            $classes[] = 'first';
        }
    }
    return $classes;
}
add_filter( 'post_class', 'first_post' );
?>
-------------------------------------------------------


コードの内容：1つ目の記事に指定するスタイルの例
コードの記述先：style.css
-------------------------------------------------------
.first.post{
    background-color:#EEE;
}
-------------------------------------------------------