Also curious how to make the short post (before the “read more”) a little longer..
Hi,
If you wish to include more words into the short version of all your posts, then you could simply replace the following line:
<?php thebox_excerpt(40); ?>
by, for instance:
<?php thebox_excerpt(60); ?>
in the content.php
file (that’s line No.48) of your child theme; all your posts would then be automatically truncated after sixty words, instead of forty, on your main page.
But if you wish to have complete control over the extent of the excerpt of each of your posts, then I think you should replace that same line:
<?php thebox_excerpt(40); ?>
by the following one:
<?php the_content(); ?>
in your content.php
file, and then place a <!--more-->
tag at the appropriate point in the source code of each of your posts (but that’s quite a bit of extra work for your existing posts). There’s more info in the Codex here.
(Sorry, I’m unable to suggest a solution to your first request…)