Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2011-02-16 20:10:10
- DaftFunk
- New Member
- Registered: 2011-02-16
- Posts: 2
limit articles on homepage and categories
I’m using
<txp:article limit=“1” form=“single” listform=“default” />
to display the latest article on the homepage, but I wish to display a different limit on category views but unsure how to go about it. Currently category views are being limited by the limit=“1” on the default page.
I’ve tried numerous things but can’t figure it out, although when I do find out I’m sure I’ll kick myself.
Thanks in advance guys.
Offline
Re: limit articles on homepage and categories
<txp:if_category>
<txp:article limit="10" />
<txp:else />
<txp:article limit="1" />
</txp:if_category>
Code is topiary
Offline
#3 2011-02-17 17:59:03
- DaftFunk
- New Member
- Registered: 2011-02-16
- Posts: 2
Re: limit articles on homepage and categories
Fantastic, thank you :-)))))
Offline