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
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
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>
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.
chokococo86
Member
Posted 11 months ago #
Thank you so much, it worked! :D