Title: Showing full posts
Last modified: August 30, 2016

---

# Showing full posts

 *  [halcXVl](https://wordpress.org/support/users/halcxvl/)
 * (@halcxvl)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/showing-full-posts-2/)
 * I read that if I want to have the full post shown rather than just an excerpt,
   I just need to replace **the_excerpt()** with **the_content()** in the index.
   php file. The problem is my index.php file doesn’t contain the_excerpt().
 * I’m using the nature-one theme. Can someone please help? Thanks.

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

 *  Moderator [t-p](https://wordpress.org/support/users/t-p/)
 * (@t-p)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/showing-full-posts-2/#post-6339506)
 * > I’m using the nature-one theme.
 * – Your currently used theme is not one of the supported themes from [https://wordpress.org/themes/](https://wordpress.org/themes/):
   
   [https://wordpress.org/themes/search/nature-one/](https://wordpress.org/themes/search/nature-one/)
 * – Please contact the developer directly for support with your question. You’ll
   be more likely to find a good answer from them, for they have the access to its
   code. Forum volunteers are not given access to commercial products, so they would
   not know why your commercial theme or plugin is not working properly. The vendors
   are responsible for supporting their commercial product. These forums are for
   free themes available in the WordPress theme directory at wordpress.org/themes/.
   See [http://codex.wordpress.org/Forum_Welcome#Commercial_Products](http://codex.wordpress.org/Forum_Welcome#Commercial_Products)
 *  Thread Starter [halcXVl](https://wordpress.org/support/users/halcxvl/)
 * (@halcxvl)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/showing-full-posts-2/#post-6339606)
 * Actually the theme is found on that site:
    [https://wordpress.org/themes/nature-one/](https://wordpress.org/themes/nature-one/)
 *  Thread Starter [halcXVl](https://wordpress.org/support/users/halcxvl/)
 * (@halcxvl)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/showing-full-posts-2/#post-6339607)
 * I guess I’ll try to contact SKTThemes.
 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/showing-full-posts-2/#post-6339629)
 * for that theme, please post directly in [https://wordpress.org/support/theme/nature-one#postform](https://wordpress.org/support/theme/nature-one#postform)
 * **index.php **calls a template part:
 *     ```
       get_template_part( 'content', get_post_format() );
       ```
   
 * i.e. you need to check **content.php** (and possibly the other **content-{???}.
   php** files) within a child theme;
 * copy of the relevant section in **content.php**:
 *     ```
       <?php if ( is_search() || !is_single() ) : // Only display Excerpts for Search ?>
                   <div class="entry-summary">
                       <?php echo skt_natureone_content(40); ?>
                       <a class="read-more" href="<?php the_permalink(); ?>"><?php _e('Read More »','nature-one'); ?></a>
                   </div><!-- .entry-summary -->
               <?php else : ?>
                   <div class="entry-content">
                       <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'nature-one' ) ); ?>
                       <?php
                           wp_link_pages( array(
                               'before' => '<div class="page-links">' . __( 'Pages:', 'nature-one' ),
                               'after'  => '</div>',
                           ) );
                       ?>
                   </div><!-- .entry-content -->
               <?php endif; ?>
       ```
   
 * _[continued at [https://wordpress.org/support/topic/show-full-posts?replies=1%5D](https://wordpress.org/support/topic/show-full-posts?replies=1%5D)

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

The topic ‘Showing full posts’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 4 replies
 * 3 participants
 * Last reply from: [Michael](https://wordpress.org/support/users/alchymyth/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/showing-full-posts-2/#post-6339629)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
