Forums

[resolved] How to show full story... (5 posts)

  1. chokococo86
    Member
    Posted 11 months ago #

    Hello

    I just installed the WhitePress theme:

    http://www.wordpressthemesbook.com/whitepress/

    However, only a short story version is showing on the front page of my post. How can I change that so it will show the full story incl. pictures? (I don't want the read more button, but to show full story).

    Thank you

  2. alchymyth
    The Sweeper
    Posted 11 months ago #

    edit the template for the front page (index.php ?) and look for
    the_excerpt()

    http://codex.wordpress.org/Function_Reference/the_excerpt

    and replace it with
    the_content()

    http://codex.wordpress.org/Template_Tags/the_content

  3. chokococo86
    Member
    Posted 11 months ago #

    I already tried that but there is no the_excerpt ()

    It looks like this:

    <p><?php limit_content(get_the_content(),500); ?></p>
    					<a class="continue" href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">Read More</a>
    				</div>
  4. alchymyth
    The Sweeper
    Posted 11 months ago #

    try and replace this part:

    <p><?php limit_content(get_the_content(),500); ?></p>
    					<a class="continue" href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">Read More</a>

    with:
    <?php the_content(); ?>

    make a backup copy before editing.

  5. chokococo86
    Member
    Posted 11 months ago #

    Thank you so much, it worked! :D

Reply

You must log in to post.

About this Topic