Many times people create bigger post or article. Many wp developers asks me many questions daily. Most commonly I asked about showing the all the post images as slideshow or only thumbs. Using following code you can fetch the wordpress thumbnails. You just need to put following code into your functions.php file.
functions.php file you can find in your wordpress theme folder. Put following function in that file.
function show_all_thumbs() { global $post; $post = get_post($post); /* image code */ $images =& get_children( 'post_type=attachment&post_mime_type=image&output=ARRAY_N&orderby=menu_order&order=ASC&post_parent='.$post->post_parent); if($images){ foreach( $images as $imageID => $imagePost ){ unset($the_b_img); $the_b_img = wp_get_attachment_image($imageID, 'thumbnail', false); $thumblist .= '<a href="'.get_attachment_link($imageID).'">'.$the_b_img.'</a>'; } } return $thumblist; }
In index.php or single.php you can use following code.
<?php echo show_all_thumbs(); ?>
Using above code you will be able to show or display all the attached images of the posts.