Results 1 to 4 of 4

Thread: How to change Full Post Content to an Excerpt on WordPress Blog Homepage

  1. #1
    Join Date
    Jun 2009
    Posts
    441

    How to change Full Post Content to an Excerpt on WordPress Blog Homepage

    I am running a blog developed in WordPress. I would like to make my homepage show only excerpts instead of whole posts. Is this possible? Do I need some kind of plug-ins or something else? Is there anyone who can guide me how to change Full Post Content to an Excerpt on WordPress Blog Homepage?

  2. #2
    Join Date
    Nov 2008
    Posts
    1,192

    Re: How to change Full Post Content to an Excerpt on WordPress Blog Homepage

    To change Full Post Content to an excerpts, you will need to edit your template’s files. In index.php replace:
    PHP Code:
    <?php the_content(); ?>
    With something like:
    PHP Code:
    <?php
    if ($single) {
    the_content();
    }
    else {
    the_excerpt();
    }
    ?>

  3. #3
    Join Date
    Nov 2008
    Posts
    1,054

    Re: How to change Full Post Content to an Excerpt on WordPress Blog Homepage

    Why are you using excerpt, you an even manage how many posts that can be seen on the front page by selecting Options - Reading - "Show Number of Posts on the Front Page" in the Administration Panel on the full version of WordPress. Decide yourself about the length of your posts. This would be a better decision than others.

  4. #4
    Join Date
    Jun 2009
    Posts
    441

    Re: How to change Full Post Content to an Excerpt on WordPress Blog Homepage

    I want to show only excerpts on my WordPress Blog home page because I think excerpts helps the readers to get the information faster. On the contrary, full posts makes the homepage look messy and unorganized which is wrong from the SEO point of view. And thanks void for your comment. I will give it a try.

Similar Threads

  1. Help to improve my wordpress blog seo
    By Talitha in forum Technology & Internet
    Replies: 8
    Last Post: 29-06-2011, 11:06 AM
  2. How to add Facebook like button in WordPress blog?
    By MacKenze in forum Tips & Tweaks
    Replies: 2
    Last Post: 31-01-2011, 12:11 PM
  3. How many post are allowed to post on a blog in a single day
    By umaymah in forum Technology & Internet
    Replies: 3
    Last Post: 16-01-2011, 06:11 AM
  4. How to create a blog on Wordpress
    By Antonio1 in forum Technology & Internet
    Replies: 6
    Last Post: 07-01-2010, 05:28 AM
  5. Move wordpress blog to new domain
    By jeffcoo in forum Software Development
    Replies: 3
    Last Post: 21-05-2009, 05:05 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,924,613.96416 seconds with 17 queries