Tien leestips

10,
‘orderby’ => ‘rand’,
‘category_name’ => ‘achtergrond’,
));

// The Loop
while ( have_posts() ) : the_post();
echo ‘

‘;
echo get_the_post_thumbnail( $post_id, array(200,200), $attr );
echo ‘

‘;
the_title();
echo ‘

‘;
the_excerpt();
echo ‘

‘;
endwhile;

// Reset Query
wp_reset_query();
?>