On a site I run, Gapers' Block (http://www.gapersblock.com), there is a news section on the left side column. It's a weblog that is included on the index.php page. Towards the bottom, after 8 posts, there is a listing of recent posts. I use this to display it:
CODE
<MTArchiveList archive_type="Individual" lastn="12">
• <span class="v9"><$MTEntryDate format="%d %b"$></span>: <a href="<$MTArchiveLink$>"><$MTArchiveTitle$></a><br>
</MTArchiveList></p>
• <span class="v9"><$MTEntryDate format="%d %b"$></span>: <a href="<$MTArchiveLink$>"><$MTArchiveTitle$></a><br>
</MTArchiveList></p>
It gives me the last 12 most recent posts. What I really wouldlike to do is display the most recent 12 posts prior to the 8 already on display in full above it. Thus I'dlike to offset it if possible. Is it possible?
I'd imagine the code would look something like this though it doesn't work (unless I'm doing something wrong):
CODE
<MTArchiveList archive_type="Individual" lastn="12" offset="8">
• <span class="v9"><$MTEntryDate format="%d %b"$></span>: <a href="<$MTArchiveLink$>"><$MTArchiveTitle$></a><br>
</MTArchiveList></p>
• <span class="v9"><$MTEntryDate format="%d %b"$></span>: <a href="<$MTArchiveLink$>"><$MTArchiveTitle$></a><br>
</MTArchiveList></p>
Any suggestions or help would be much appreciated.