Title: ringmastersw's Replies | WordPress.org

---

# ringmastersw

  [  ](https://wordpress.org/support/users/ringmastersw/)

 *   [Profile](https://wordpress.org/support/users/ringmastersw/)
 *   [Topics Started](https://wordpress.org/support/users/ringmastersw/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ringmastersw/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ringmastersw/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ringmastersw/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ringmastersw/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ringmastersw/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Iconic One] How to Show Full Content on Sticky Post](https://wordpress.org/support/topic/how-to-show-full-content-on-sticky-post/)
 *  Thread Starter [ringmastersw](https://wordpress.org/support/users/ringmastersw/)
 * (@ringmastersw)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/how-to-show-full-content-on-sticky-post/#post-4286825)
 * Fixed it! Edited the content.php file in my child theme of Iconic One – changed
   this:
 *     ```
       <?php if ( is_sticky() )
       			the_content();
       		else;
       			the_excerpt();
       		?>
       ```
   
 * to this:
 *     ```
       <?php if ( is_sticky() )
       			the_content();
       		else
       			the_excerpt();
       		?>
       ```
   
 * And it removed the extra excerpt from the full content sticky post.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Iconic One] How to Show Full Content on Sticky Post](https://wordpress.org/support/topic/how-to-show-full-content-on-sticky-post/)
 *  Thread Starter [ringmastersw](https://wordpress.org/support/users/ringmastersw/)
 * (@ringmastersw)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/how-to-show-full-content-on-sticky-post/#post-4286720)
 * **UPDATE:**
    Figured out the reason why only part of the full post was showing
   up. It was due to my having a <!–more–> tag in the code from before we were going
   to show the full post.
 * Now I have the non-sticky posts showing normally and the sticky posts with both
   the full post and the excerpt.
    [Screenshot](http://img543.imageshack.us/img543/5356/dtt7.png)

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