Post excerpt allows you to display only the first part of your blog’s post, a block of content instead of displaying the full post. While many don’t know the real reason behind and just use it to make things more aesthetic, displaying excerpt has got many advantages both in the SEO, monetisation and traffic area. There are also further things you should be knowing and setting up when using post excerpt which I shall be describing in this post.

why use post excerpt?
- Better SEO. Google considers any similar block of content as duplicate. So if you display the full post on the frontpage as well as in the archives(category,month,etc archives), all of this will add to duplicate content which will affect your position in the search results.
- To boost speed. When you display excerpt, only a small part of which might be a very long post gets displayed, this preventing your blog from loading the full post on the front/archives page gaining you in loading time.
- Providing visitors a choice. If you display full post on the frontpage, and that happens to be a long post, this might discourage someone reading it even if it’s something he needs. Instead when displaying post excerpt, you allow the visitor to have an idea of what the post is about in the excerpt and if that interests him, then he might read further. This saves your visitor’s precious time and encourages them to read more of your post.
- For easy submission to bookmarking sites.When you display the full post on the frontpage, people will read it there itself and if they want to submit it to bookmarking sites using buttons on their browser’ toolbar like submitting to StumbleUpon or other such site, then it’s your homepage link that will be sent. On the other hand, if you display excerpt, visitor will have to click to read the full post and make it easy for them to submit to sites using buttons on their browser since they are on that specific post itself.

- To increase page impressions. This might not surely count as a real reason, but it helps especially if you have opted an ad campaign. Putting people on that post itself will allow you to generate page impressions which in return generate you more revenue without having you to plaster your homepage with ad.
different ways of displaying post excerpt
How your posts excerpts get displayed will depend on where those posts are being displayed and the type of Wordpress template tag code being used for that section. Don’t panic, I shall be explaining you this and all will get really simple.
You can display excerpts 2 ways :
- Method 1 : With a read more link which is usually found at the end of the excerpt which when clicked will guide your visitor to read the rest of the entry. When using such type of excerpt, links,images and formatting are displayed within the excerpt. This is usually used on the frontpage(and further down pages) to provide your visitors with a more appealing excerpted content. You can also determine the size of the excerpt getting displayed using the more tag( <!–more–>).(more on this further below)
- Method 2 : With no links,formatting or images. Excerpt will only get displayed as a fixed size chunk of text with a trailing 3 dots at the end of the excerpt. This type of excerpt is used when browsing posts in the archives : month,day,year,author or category archives or when displaying search results.

Displaying excerpt on the frontpage
Now you’ve understood the reasons why excerpt is good for you. Displaying post excerpt on the frontpage of your blog is really simple. When you’re writing a post, use the more tag( <!–more–>) where you want the excerpt to end. So when you’ll publish the post, only the part above the <!–more–> will get displayed together with any links,images or formatting in it.

Also, I’m sure if you’re displaying post excerpt on the frontpage, displaying a single post won’t fit things(occupying too less space). You can configure the number of posts which get displayed on the frontpage when you’re using post excerpt by going to your Wordpress admin section > Options > Reading > Under Blog Pages put the number of post you want to display. Use this option only if you’re displaying excerpt, else several FULL posts will get displayed on your frontpage which would surely slow things down.

Displaying excerpt on archives pages listing and search results
Within your current theme’s folder, look for such template file as the archive.php,category.php and search.php if your theme comes with these. Open each one, and look within the post entry the type of template tag being called :
If it’s <?php the_content("Continue reading →"); ?> , then your excerpt will get displayed as described in method 1 above with formatting, links and images ONLY if you have used the more tag( <!–more–>) in that post. You can customise the text link which you would like to appear at the end of the excerpt by changing the Continue reading to something else like Read the rest of this entry or Read more,etc
Else if it’s <?php the_excerpt() ?>, your excerpt will get displayed as described in method 2 above with no links at the end. A fixed size chunk of unformatted text.
Now it’s up to you to decide whether you want to display the excerpt as in method 1 or method 2. After deciding, you can change the template tag <?php the_content("Continue reading →"); ?> against <?php the_excerpt() ?> or vice versa to obtain the results you want according to the above described methods.
If your theme doesn’t come with such specific template page, you can configure how excerpt are displayed by opening the index.php found in your theme’s file. Within the post entry div, put the following code instead of <?php the_content("Continue reading →"); ?> :
<?php if (is_search()) { ?>
<?php the_excerpt() ?>
<?php } elseif (is_category()) { ?>
<?php the_excerpt() ?>
<?php } elseif (is_year()) { ?>
<?php the_excerpt() ?>
<?php } elseif (is_month()) { ?>
<?php the_excerpt() ?>
<?php } elseif (is_day()) { ?>
<?php the_excerpt() ?>
<?php } else { ?>
<?php the_content(__('Read the rest of this entry »')); ?>
<?php } ?>
Above the code will have you display excerpt as in method 2 for search results, category, year,month and day archives while displaying excerpt as in method 1 for the frontpage posts.
Choosing what to display in excerpt
If you are using method 2 to display excerpts in archives pages, only the first few lines of the post will get displayed. Perhaps you don’t like this and would like to have another description shown for the excerpt. You can change the excerpt being displayed when writing the post at the Optional Excerpt section. Put a short description there and it’s this text that will get displayed instead of the first few lines of your post.

Displaying full post in feeds when using excerpt
Now one issue that arises when using excerpt for your posts(using the more tag, <!–more–>) on the frontpage is that excerpted post will also get displayed in your feeds which is surely a painful experience for those on feed readers.
You can overcome this problem by first going to your Wordpress admin section > Options > Reading section. Under the Syndication Feeds area, put the number of post you want to get displayed in the feeds at a time in the Show the most recent: field. Then for the For each article, show: select Full Text.

Then download the Full Text Feed plugin. Extract and upload the full_feed.php file to your wp-content/plugins folder. After this, activate within your Plugins section in your Wordpress admin section.
Now full posts will get displayed in feeds even if you’re using the more tag( <!–more–>) to display excerpt on the frontpage.
I hope I’ve covered everything you should be knowing when using excerpt on your blog and how to use it the best way. If you have any questions or need further clarification, do please leave a comment and I’ll be glad to attend to your questions. Don’t miss any such info, do subscribe to my feeds. Thanks for reading.
- How-to turn visitors into returning visitors
- A quick remedy to your theme modding addiction
- Best of Wordpress theme galore
- The proper way to write code in your blog posts
- Hiding your image buttons for some sidebar goodness
- Quick shooting stats of your Wordpress blog
- WordPress Plugins for Feeds
- Full text rss = death for blog??
- Writing With Post Excerpts and Feed Excerpts in Mind
- Display Post Excerpts Only in WordPress

Thought unrelated to excerpts, I would also like to add:
If you want to break your full posts into pages:
use: <!–nextpage–>
Excellent! I tend to use the “Read the rest of this entry..” link on most of my longer posts – the main reason being to give readers a choice.
Thanks for bringing the other points to my attention too…plenty to bear in mind for the future.
–Steve
@ Gabriel
thanks for the comment Gabriel and for the code. That’s surely something much needed. I think there are too many plugins that are really useless since people could accomplish their tasks with just simple codes like you’ve given. I think that code you’ve sent also has a plugin just to do that.
Check out this and this one codes which might interest you too.
Thanks indeed for your visit.
@ steve
Thanks for the read Steve. Do keep in touch since I’ll be sending more things you should know stuff about Wordpress in the near future.
sa marchait pas pour moi
now I know why
Post excerpt is definitly a need when you use wordpress, when you look from SEO perspective…
[...] Things you should know when using post excerpt [...]
[...] Things you should know when using post excerpt: detailed tutorial on how-to use excerpt and where to use them. [...]
[...] reading an excerpts tips, I put the excerpts for all my recent [...]
A very comprehensive post. Great job, I think you’ve covered pretty much everything here.
[...] Things you should know when using post excerpt [...]
Good post.. I was looking for this information myself.
Another point I would add that benefits using excerpts is that it brings the viewer to your full post page with all the comments. If you have your entire post on the homepage, some people won’t click on the link and see any comments.
[...] Things you should know when using post except [...]
[...] Things you should know when using post excerpt [...]
It’s not working for me. I followed your steps for full feeds with the “more” link in the post, changed settings to full feed, even unsubscribed and resubscribed to my feed and I still get partial feeds, even with the full feed plugin activated and all. What might I be missing?
@ Erjati
you should allow it some time, for me too it wasn’t appearing immediately. but sure it works. try it and wait for some hours, perhaps after posting a new post and do check it out, please do tell if it doesn’t work.
Reading this in regards to a previous comment (http://germworks.net/blog/2007/07/10/phillipwray-racing-collectable-classics-website-disected/) and a well written post.
Do not know if it totally answers my problem but definitely gives me food of thought.
[...] å‚è€ƒæ–‡ç« ï¼šã€ŠThings you should know when using post excerpt》 [...]
[...] Things you should know when using post excerpt: detailed tutorial on how-to use excerpt and where to use them. [...]
[...] Things you should know when using post excerpt is a detailed tutorial on how-to use excerpt and where to use them. While many use it to make things more aesthetic, displaying excerpt has got many advantages both in the SEO, magnetization and traffic area. There are also further things you should be knowing and setting up when using post excerpt which I shall be describing in this post. [...]
[...] Many people still doubt or prefer not using excerpts but indeed post excerpt has various benefits, one of which is to help you gain some speed. Instead of displaying several full posts loaded with images, clips, etc, use the excerpt feature on the frontpage making your blog load faster when someone is accessing it. Read the full details on using post excerpt at Things you should know when using post excerpt. [...]
[...] Things you should know when using post excerpt [...]
[...] Things you should know when using post except [...]
[...] 4)Things you should know when using post excerpt- Things you should be knowing and setting up when using post excerpt is described in this article: why use post excerpt?, Different ways of displaying post excerpt, Displaying excerpt on the frontpage, archives and search results page and Displaying full post in feeds. [...]
[...] 4)Things you should know when using post excerpt/ä¸€äº›ä½ åº”è¯¥äº†è§£çš„å…³äºŽä½¿ç”¨æ–‡ç« æ‘˜è¦çš„亅-为什么è¦ä½¿ç”¨æ–‡ç« 摘è¦?, æ˜¾ç¤ºæ–‡ç« æ‘˜è¦çš„ä¸åŒæ–¹æ³•, 如何在首页ã€å˜æ¡£é¡µå’Œæœç´¢ç»“æžœé¡µé¢æ˜¾ç¤ºæ–‡ç« 摘è¦, 而在Feed䏿˜¾ç¤ºå…¨æ–‡ã€‚ [...]
[...] 4)Things you should know when using post excerpt- Things you should be knowing and setting up when using post excerpt is described in this article: why use post excerpt?, Different ways of displaying post excerpt, Displaying excerpt on the frontpage, archives and search results page and Displaying full post in feeds. [...]
[...] Things you should know when using post excerpt: detailed tutorial on how-to use excerpt and where to use them. [...]
[...] 4)Things you should know when using post excerpt- Things you should be knowing and setting up when using post excerpt is described in this article: why use post excerpt?, Different ways of displaying post excerpt, Displaying excerpt on the frontpage, archives and search results page and Displaying full post in feeds. [...]
FINALLY! Someone who can explain things clearly AND considered different themes! Thank you!!
[...] Things you should know when using post excerpt [...]
[...] 4.Things you should know when using post excerpt(ä½¿ç”¨æ‘˜å½•æ—¶ä½ åº”è¯¥çŸ¥é“的事情?)-讲述了为什么è¦ä½¿ç”¨æ–‡ç« æ‘˜å½•ï¼Œæ˜¾ç¤ºæ–‡ç« æ‘˜å½•çš„å…¶ä»–æ–¹æ³•ï¼Œåœ¨é¦–é¡µã€å˜æ¡£å’Œæœç´¢ç»“果显示摘è¦ï¼Œè€Œåœ¨Feedä¸å…¨æ–‡è¾“出。 [...]
[...] 4)Things you should know when using post excerpt/ä¸€äº›ä½ åº”è¯¥äº†è§£çš„å…³äºŽä½¿ç”¨æ–‡ç« æ‘˜è¦çš„亅-为什么è¦ä½¿ç”¨æ–‡ç« 摘è¦?, æ˜¾ç¤ºæ–‡ç« æ‘˜è¦çš„ä¸åŒæ–¹æ³•, 如何在首页ã€å˜æ¡£é¡µå’Œæœç´¢ç»“æžœé¡µé¢æ˜¾ç¤ºæ–‡ç« 摘è¦, 而在Feed䏿˜¾ç¤ºå…¨æ–‡ã€‚ [...]