Help - Search - Members - Calendar
Full Version: Last 5 Excerpts from a Catagory
Movable Type Community Forum > Using Movable Type > Templates and Tags
Josiah
I want to include excerpts from the last 5 entries in a catagory (and link to each one) on my home page, so do I use the following code, then use PHP's include fuction?

CODE
<MTEntries lastn="5" catagory="Personal">
<$MTEntryExcerpt convert_breaks="1"$>
</MTEntries>
ndns
That code will work, except for one minor detail - you spelled category wrong. Other than that, drop that code into a new index template, name it something you'll remember (ex: last5.inc), and then include that file.
CODE
<? include('/full/path/to/last5.inc'); ?>

If you want to include the title as the link to the entry, along with the excerpt, try this code:
CODE
<MTEntries lastn="5" category="Personal">
<a href="<MTEntryPermalink>"><b><MTEntryTitle></b></a><br />
<MTEntryExcerpt convert_breaks="1">
</MTEntries>
Josiah
Completely awesome. Thank you!
ndns
You're welcome! biggrin.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2010 Invision Power Services, Inc.