Title: Hide text in posts
Last modified: August 20, 2016

---

# Hide text in posts

 *  [jakobsitter](https://wordpress.org/support/users/jakobsitter/)
 * (@jakobsitter)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/hide-text-in-posts/)
 * So i’m making a website. And on the index file, I will hide the text in the posts
   and show only the featured image, and the entry title of course.
 * help !!

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

 *  [TimDesain](https://wordpress.org/support/users/timdesain/)
 * (@timdesain)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/hide-text-in-posts/#post-2413096)
 * [http://codex.wordpress.org/Theme_Development](http://codex.wordpress.org/Theme_Development)
   
   [http://codex.wordpress.org/Function_Reference/query_posts](http://codex.wordpress.org/Function_Reference/query_posts)
   [http://codex.wordpress.org/Function_Reference/the_post_thumbnail](http://codex.wordpress.org/Function_Reference/the_post_thumbnail)
 *     ```
       <?php
       query_posts( $args );
       while ( have_posts() ) : the_post();
       the_title();
       the_post_thumbnail();
       endwhile;
       wp_reset_query();
       ?>
       ```
   
 *  Thread Starter [jakobsitter](https://wordpress.org/support/users/jakobsitter/)
 * (@jakobsitter)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/hide-text-in-posts/#post-2413153)
 * I hate to ask, but where shall i put the code ?
 *  [TimDesain](https://wordpress.org/support/users/timdesain/)
 * (@timdesain)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/hide-text-in-posts/#post-2413158)
 * have you read those (3) pages?
 * put the code in `index.php` of your theme
 * or try
    [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)

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

The topic ‘Hide text in posts’ is closed to new replies.

 * 3 replies
 * 2 participants
 * Last reply from: [TimDesain](https://wordpress.org/support/users/timdesain/)
 * Last activity: [14 years, 6 months ago](https://wordpress.org/support/topic/hide-text-in-posts/#post-2413158)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
