Uffo
Uffo

Reputation: 10056

query_posts and post thumbnail

Here is my code:

    $data = array('cat' => '3');
    $sliderData = query_posts($data);

But I also use custom fields, and post thumbnail, how can I get those?

Upvotes: 0

Views: 799

Answers (1)

Uffo
Uffo

Reputation: 10056

Solved:

       $url = get_post_custom_values("url", $slider->ID);
       $thumb = get_the_post_thumbnail($slider->ID,"large");

Upvotes: 1

Related Questions