Reputation: 307
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
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