Is there a plugin that lets me show a small piece of an article on my homepage, with a 'Read Full Article' (or sumat similar) at the bottom that could link it to where the main article is placed on my site?
<?php the_content(''); ?> will display the whole post. <?php the_excerpt(''); ?> will display the post excerpt. Use this code in index.php, home.php, tag.php and archive.php <?php the_excerpt(''); ?><a href="<?php the_permalink() ?>">Read More</a> Code (markup):