1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to show summary of posts on front page?

Discussion in 'WordPress' started by nihangshah, Sep 29, 2008.

  1. #1
    I want to show partial post, and not the entire post.

    Example: Techcrunch.com shows partial post.

    How can one do that in Wordpress?
     
    nihangshah, Sep 29, 2008 IP
  2. craiger22

    craiger22 Well-Known Member

    Messages:
    1,472
    Likes Received:
    99
    Best Answers:
    0
    Trophy Points:
    170
    #2
    you can either use the <!--more--> tag or edit the theme.

    If you are going to edit the theme:

    edit home.php

    Find
    <?php the_content(); ?>
    Code (markup):
    Replace with
    <?php the_excerpt(); ?>
    Code (markup):
     
    craiger22, Sep 29, 2008 IP
    GuardianAngel likes this.
  3. kburb23

    kburb23 Peon

    Messages:
    19
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    This is known as a "teaser" just put the <!--more--> marker at the end of the part you want to be the teaser...
     
    kburb23, Sep 29, 2008 IP
    GuardianAngel likes this.
  4. ThoughtPunk

    ThoughtPunk Active Member

    Messages:
    1,135
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    78
    #4
    Log into wordpress - go to settings - go to reading - and where you see

    check summary instead of full posts.

    Of course you can use plugins for your feeds etc.
     
    ThoughtPunk, Sep 30, 2008 IP
  5. WebSolutions86

    WebSolutions86 Peon

    Messages:
    434
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #5
    You can use the php excerpt tag

    http://codex.wordpress.org/Template_Tags/the_excerpt

    and then add a link to post <a href="<?php the_permalink(); ?>">Read more</a>

    or u can show the_excerpt_rss

    theres a plugin excerpt reloaded, u could use to customize excerpt
     
    WebSolutions86, Oct 1, 2008 IP