Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2013-02-14 13:53:07
- Algaris
- Member
- From: England
- Registered: 2006-01-27
- Posts: 581
[Solved] Exclude articles belonging to a specified category
I’m using Article Custom to output links to all articles belonging to the current section. Is it possible to exclude articles within that section belonging to a specified category?
Here’s the code I’m using to output the links.
<txp:article_custom section='<txp:section />' limit="999999" sort="posted desc" wraptag="ul"><li><txp:permlink><txp:title /></txp:permlink></li><br /></txp:article_custom>
Last edited by Algaris (2013-02-14 16:27:43)
Offline
Re: [Solved] Exclude articles belonging to a specified category
hi try this:
<txp:article_custom section='<txp:section />' limit="999999" sort="posted desc" wraptag="ul"><txp:if_article_category name="notshowarticles"><txp:else /><li><txp:permlink><txp:title /></txp:permlink></li><br /></txp:if_article_category></txp:article_custom>
Last edited by Dragondz (2013-02-14 14:00:09)
Offline
#3 2013-02-14 16:27:26
- Algaris
- Member
- From: England
- Registered: 2006-01-27
- Posts: 581
Re: [Solved] Exclude articles belonging to a specified category
Thank you that did just the trick.
Offline