Ordering information in a website is a nightmare, no matter how many domains you have, no matter what CMS you use. Technologies are so complex that a tree structure is hardly sufficient as principle for ordering and navigation. Perhaps dynamically generated pages that change according to the perspective of the user (project oriented, hardware […]
Kind reply from Scott, author of plaintxtBlog.
edit the follow theme files: archive.php, category.php, tag.php.
Change the lines with the_excerpt()
<?php the_excerpt('<span class="more-link">'.__('More…', 'plaintxtblog').'</span>') ?>
to the_content(), like so:
<?php the_content('<span class="more-link">'.__('More…', 'plaintxtblog').'</span>') ?>
(I am putting this here because I have not yet created a category in the wikis for web dev stuff)