Skip to content

Instantly share code, notes, and snippets.

@sethiele
Created December 6, 2010 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sethiele/730794 to your computer and use it in GitHub Desktop.
Save sethiele/730794 to your computer and use it in GitHub Desktop.
Wordpress get_posts
<?php global $post; $myposts = get_posts('numberposts=10&offset=0'); //Mit dieser Funktion läd man "numberposts"
foreach($myposts as $post) :
setup_postdata($post);
print get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment