Title: How to remove &#8220;readmore&#8221;
Last modified: August 19, 2016

---

# How to remove “readmore”

 *  Resolved [sof613](https://wordpress.org/support/users/sof613/)
 * (@sof613)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-readmore/)
 * Hello , i have a wordpress with a streamline theme . its a great theme , i just
   cant figure out. on the main page home in my category i want to put a full post
   and it doesnt let me , just takes a part of it and gives me an option of read
   more .
    does anyone know how to bypass readmore option? thank you

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

 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-readmore/#post-1382110)
 * With the help of the [Template Hierarchy](http://codex.wordpress.org/Template_Hierarchy)
   article, determine what [Template](http://codex.wordpress.org/Templates) is displaying
   your posts (could be index.php). Then edit that [Template](http://codex.wordpress.org/Templates)
   and replace `the_excerpt();` with the [template tag](http://codex.wordpress.org/Template_Tags),
   [the_content()](http://codex.wordpress.org/Template_Tags/the_content).
 * Also see the first four questions here:
    [FAQ_Layout_and_Design#Text_and_Content_Display](http://codex.wordpress.org/FAQ_Layout_and_Design#Text_and_Content_Display)
 *  Thread Starter [sof613](https://wordpress.org/support/users/sof613/)
 * (@sof613)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-readmore/#post-1382115)
 * thank you , i dont know much about html . my index.php did not have the_excerts
   in it , here is my home.php i found read more in it . can someone tell me what
   to change in here, thank you
 * <?php get_header(); ?>
 * <div id=”homepage”>
 *  <div id=”contentleft”>
 *  <div class=”postarea”>
 *  <?php if (function_exists(‘gallery_styles’)) : ?>
 *  <div id=”fcg”>
    <?php include (ABSPATH . ‘/wp-content/plugins/featured-content-
   gallery/gallery.php’); ?> </div>
 *  <?php endif; ?>
 *  <div class=”aheadline”>
    <h3><?php echo cat_id_to_name(get_theme_mod(‘featured_top_left’));?
   ></h3> </div>
 *  <div class=”clear”></div>
 *  <?php $recent = new WP_Query(“cat=”.get_theme_mod(‘featured_top_left’).”&showposts
   =”.get_theme_mod(‘featured_top_left_num’)); while($recent->have_posts()) : $recent-
   >the_post();?>
    <?php if( get_post_meta($post->ID, “thumb”, true) ): ?> ” rel
   =”bookmark”><img class=”thumb” src=”<?php bloginfo(‘template_directory’); ?>/
   tools/timthumb.php?src=<?php echo get_post_meta($post->ID, “thumb”, $single =
   true); ?>&h=<?php echo get_theme_mod(‘featured_top_left_thumb_height’); ?>&w=
   <?php echo get_theme_mod(‘featured_top_left_thumb_width’); ?>&zc=1″ alt=”<?php
   the_title(); ?>” /> <?php else: ?> <?php endif; ?>
 * </h1>
    <?php the_content_limit(400, “[“.__(“Read more”, ‘studiopress’).”]”); ?
   >
 *  <hr/>
 *  <?php endwhile; ?>
 *  **” rel=”bookmark”><?php _e(“Read More Posts From This Category”, ‘studiopress’);?
   >**
 *  </div>
 *  </div>
 * <?php include(TEMPLATEPATH.”/sidebar.php”);?>
 * </div>
 * <?php //The main column ends ?>
 * <?php get_footer(); ?>
 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-readmore/#post-1382144)
 * Try changing this:
 *     ```
       <?php the_content_limit(400, "[".__("Read more", 'studiopress')."]"); ?>
       ```
   
 * to this:
 *     ```
       <?php the_content(); ?>
       ```
   
 *  Thread Starter [sof613](https://wordpress.org/support/users/sof613/)
 * (@sof613)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-readmore/#post-1382156)
 * thank you so much , worked like magic !!!!!!

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

The topic ‘How to remove “readmore”’ is closed to new replies.

 * 4 replies
 * 2 participants
 * Last reply from: [sof613](https://wordpress.org/support/users/sof613/)
 * Last activity: [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-readmore/#post-1382156)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
