MLS1984
MLS1984

Reputation: 307

Customizing the wordpress loop in twenty ten theme

I'm trying to customize the loop in wordpress's twenty ten theme to display one one post of three categories on the home page. Is it suggested to use twenty ten? I'm attempting to recreate something similar to Good Magazine's layout.

thank you

Upvotes: 0

Views: 312

Answers (1)

cwhelms
cwhelms

Reputation: 1771

    $args = array(
        'category__in' => array(1,2,3),
        'showposts' => 1,
    'order'    => 'DESC'
    );

    query_posts( $args );

If you post what you have so far, we can give you more detailed answers.

Upvotes: 1

Related Questions