Title: Thumbnails in sidebar
Last modified: August 20, 2016

---

# Thumbnails in sidebar

 *  Resolved [bjihalliday](https://wordpress.org/support/users/bjihalliday/)
 * (@bjihalliday)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/thumbnails-in-sidebar-1/)
 * I am trying to get the title of each post below the thumbnails in my sidebar.
 * The code I am currently using is
 *     ```
       <div class="th fl"><?php
         $thumbnails = get_posts('numberposts=4');
         foreach ($thumbnails as $thumbnail) {
           if ( has_post_thumbnail($thumbnail->ID)) {
             echo '<a href="' . get_permalink( $thumbnail->ID ) . '" title="' . esc_attr( $thumbnail->post_title ) . '">';
             echo get_the_post_thumbnail($thumbnail->ID, 'thumbnail');
             echo '</a>';
           }
         }
       ?>
   
       </div>
       ```
   
 * This draws the thumbnails into the sidebar but I cannot seem to be able to get
   the post titles below these.
 * Can someone please help.

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/thumbnails-in-sidebar-1/#post-2577365)
 * have you tried to use
 * `echo $thumbnail->post_title;`
 *  Thread Starter [bjihalliday](https://wordpress.org/support/users/bjihalliday/)
 * (@bjihalliday)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/thumbnails-in-sidebar-1/#post-2577411)
 * Thank you very much, that has worked wonderfully.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Thumbnails in sidebar’ is closed to new replies.

## Tags

 * [post title](https://wordpress.org/support/topic-tag/post-title/)
 * [sidebar](https://wordpress.org/support/topic-tag/sidebar/)
 * [thumbnails](https://wordpress.org/support/topic-tag/thumbnails/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 2 participants
 * Last reply from: [bjihalliday](https://wordpress.org/support/users/bjihalliday/)
 * Last activity: [14 years, 3 months ago](https://wordpress.org/support/topic/thumbnails-in-sidebar-1/#post-2577411)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
