开发者

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


    $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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜