I have entered the films into the database as articles, placing them into various categories: Films, Schedule, and then into whatever category of genre they may fall. (Short Feature, Documentary, etc..)
For the schedule page, I am using the following code:
CODE
<MTEntries category="Schedule" sort_by="modified_on" sort_order="ascend''>
<MTDateHeader>
<table border="0" cellpadding="0">
<td width="105" class="sch-date" valign="top">
<$MTEntryDate format="%a %b %e"$>
</td>
<td width="422" class="sch-title" valign="top">
</MTDateHeader>
<a name="<$MTEntryID$>"></a>
<$MTEntryTitle$>
<div class="small">Categories:<MTEntryCategories glue=", ">
<a href="<$MTCategoryArchiveLink$>"><$MTCategoryLabel$></a>
</MTEntryCategories>
</div><br />
<MTDateFooter></td>
</table>
</MTDateFooter>
</MTEntries>
<MTDateHeader>
<table border="0" cellpadding="0">
<td width="105" class="sch-date" valign="top">
<$MTEntryDate format="%a %b %e"$>
</td>
<td width="422" class="sch-title" valign="top">
</MTDateHeader>
<a name="<$MTEntryID$>"></a>
<$MTEntryTitle$>
<div class="small">Categories:<MTEntryCategories glue=", ">
<a href="<$MTCategoryArchiveLink$>"><$MTCategoryLabel$></a>
</MTEntryCategories>
</div><br />
<MTDateFooter></td>
</table>
</MTDateFooter>
</MTEntries>
Two questions:
1: Why is the list coming out in reverse order? I've tried using sort_order="descend" and "ascend" but it comes out the same way every time.
2: Also, is there a way to prevent "Films" and "Schedule" from showing on the list of categories? They're mainly for back-end purposes, not really for the user to see.
Thanks so much!
Vincent