Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
#1 2007-06-14 21:07:54
- wspence
- Member
- Registered: 2006-09-03
- Posts: 84
Question on pulling dates
How do I pull dates from txp posts to look like this
<div class=“date”> <span class=“month”>Apr</span> <span class=“day”>8</span> </div>Don’t need the time posted but just month and day.
Thanks in advance!
Offline
#2 2007-06-14 21:14:19
- FireFusion
- Member
- Registered: 2005-05-10
- Posts: 698
Re: Question on pulling dates
<div class="date"> <span class="month"><txp:posted format="%b" /></span> <span class="day"><txp:posted format="%d" /></span> </div>
Offline
Re: Question on pulling dates
<div class="date">
<span class="month">
<txp:posted format="%B" />
</span>
<span class="day">
<txp:posted format="%e" />
</span>
</div>
%B
= full month name (%b
= abbreviated)%e
= day of the month (%d
= single digit days are preceded by a 0)
Last edited by jm (2007-06-14 21:19:51)
Offline
#4 2007-06-14 21:14:55
- wspence
- Member
- Registered: 2006-09-03
- Posts: 84
Re: Question on pulling dates
thanks!
Offline
#5 2007-07-03 09:30:17
- mlarino
- Member
- Registered: 2007-06-29
- Posts: 367
Re: Question on pulling dates
Is it posible to pull dates from other articles?
I am trying to use the dates of the prev and next articles on the PREV and NEXT links
Offline
Pages: 1