Things are fine on my home page, and on individual entry pages. But for some reason, on my category and date (monthly) archive pages, the recent entries are all pulled from the respective archive.
In other words, if I look at my "October 2002" page, my recent posts list only shows posts from October 2002, rather than listing my most recent posts blog-wide (eg. posts I made today, yesterday, etc.). Looking at the MT documentation, I can see that it is possible to restrict the MTEntries tag to category for example, but I have no such filter specified in my code. I'm stumped.
Code for Category archive page:
CODE
<!-- recent posts navigation -->
<h3>Recent Posts</h3>
<MTEntries lastn="10">
<a href="<$MTEntryLink$>"><$MTEntryTitle$></a><br />
</MTEntries>
<br>
<h3>Recent Posts</h3>
<MTEntries lastn="10">
<a href="<$MTEntryLink$>"><$MTEntryTitle$></a><br />
</MTEntries>
<br>
Code for monthly archive page:
CODE
<!-- recent posts navigation -->
<h3>Recent Posts</h3>
<MTEntries lastn="10">
<a href="<$MTEntryLink$>"><$MTEntryTitle$></a><br />
</MTEntries>
<br>
<h3>Recent Posts</h3>
<MTEntries lastn="10">
<a href="<$MTEntryLink$>"><$MTEntryTitle$></a><br />
</MTEntries>
<br>
my code for individual archives, which DON'T have this problem:
CODE
<!-- recent posts navigation -->
<h3>Recent Posts</h3>
<MTEntries lastn="10">
<a href="<$MTEntryLink$>"><$MTEntryTitle$></a><br />
</MTEntries>
<br>
<h3>Recent Posts</h3>
<MTEntries lastn="10">
<a href="<$MTEntryLink$>"><$MTEntryTitle$></a><br />
</MTEntries>
<br>
So you can see they're identical....is there something I need to change elsewhere in the template?
Site URL is here.
Thanks!