Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2010-09-14 16:39:49
- marteueh
- Member
- Registered: 2008-11-06
- Posts: 12
how to insert excerpts of other sections on the homepage?
Hello everyone
here is my question
I want to put in my home one or more extracts of articles from another section
how can I do?
Thanks
Offline
#2 2010-09-14 16:49:31
- masa
- Member
- From: North Wales, UK
- Registered: 2005-11-25
- Posts: 1,095
Re: how to insert excerpts of other sections on the homepage?
You need to use txp:article_custom
Either use it as a container tag or call a specific form to format the output. It can be anything from titles only to entire articles.
Below is a sample snippet I use to pull the 5 most recent galleries (title-only) into the sidebar:
<h3>Latest Galleries</h3>
<ul>
<txp:article_custom form="recent_items" section="photo-gallery" limit="5" />
</ul>
form recent_items:
<li><txp:permlink><txp:title /></txp:permlink></li>
Offline
#3 2010-09-14 16:59:03
- marteueh
- Member
- Registered: 2008-11-06
- Posts: 12
Re: how to insert excerpts of other sections on the homepage?
many thanks
it was what I needed
Offline