How do i show a small piece of an article on my homepage? Wordpress.

Discussion in 'WordPress' started by elroy81, Oct 13, 2008.

  1. #1
    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?
     
    elroy81, Oct 13, 2008 IP
  2. samsondelila

    samsondelila Peon

    Messages:
    103
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    For alternative, you can use 'random post' plugins, bro! Try googling it
     
    samsondelila, Oct 13, 2008 IP
  3. WebSolutions86

    WebSolutions86 Peon

    Messages:
    434
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #3
    <?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):
     
    WebSolutions86, Oct 14, 2008 IP