<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Tag: postdate - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/postdate</link>
		<description>Support Forum - Tag: postdate - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 17:15:12 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/tags/postdate" rel="self" type="application/rss+xml" />

		<item>
			<title>janetbakker on "Add Year to Post Date"</title>
			<link>http://www.kriesi.at/support/topic/add-year-to-post-date#post-95709</link>
			<pubDate>Thu, 07 Feb 2013 15:46:44 +0000</pubDate>
			<dc:creator>janetbakker</dc:creator>
			<guid isPermaLink="false">95709@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;YES! Thanks so much, Ismael. That works.&#60;/p&#62;
&#60;p&#62;-Janet
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Add Year to Post Date"</title>
			<link>http://www.kriesi.at/support/topic/add-year-to-post-date#post-95591</link>
			<pubDate>Thu, 07 Feb 2013 06:30:39 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">95591@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try this on your custom.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.date-year {
display: block;
text-align: center;
font: 9px Helvetica, Arial, sans-serif;
text-transform: uppercase;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change the pixel size of the font.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>janetbakker on "Add Year to Post Date"</title>
			<link>http://www.kriesi.at/support/topic/add-year-to-post-date#post-95535</link>
			<pubDate>Wed, 06 Feb 2013 21:14:19 +0000</pubDate>
			<dc:creator>janetbakker</dc:creator>
			<guid isPermaLink="false">95535@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Devin,&#60;/p&#62;
&#60;p&#62;Works like a charm, thanks much! And thanks for leaving it here for others to find. &#60;/p&#62;
&#60;p&#62;I'd like to make the year a little smaller, though, maybe by one point. Is there an easy fix and if so, where can I add the code?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
Janet
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Add Year to Post Date"</title>
			<link>http://www.kriesi.at/support/topic/add-year-to-post-date#post-53561</link>
			<pubDate>Thu, 26 Apr 2012 18:00:11 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">53561@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello kaylesimon,&#60;/p&#62;
&#60;p&#62;You'll need to open up all of the various blog post type format files and change:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;span class=&#38;#39;date-day&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;d&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;
&#38;lt;span class=&#38;#39;date-month&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;M&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;span class=&#38;#39;date-day&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;d&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;
&#38;lt;span class=&#38;#39;date-month&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;M&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;
&#38;lt;span class=&#38;#39;date-year&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;Y&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;These are all in the includes folder of your theme files and are labeled format-standard.php, format-gallery.php etc. Some of them don't naturally have dates and you might want to keep it that way in which case you won't need to edit anything in them (format-link.php for example).&#60;/p&#62;
&#60;p&#62;Then, add the following to your custom.css file located in the css folder:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.date-year {
display: block;
text-align: center;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Make sure to save all the files and upload them back to the server when you are done. You can use a free FTP program like FileZilla to download and upload the files via FTP if you don't already have a program to do this with.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kaylesimon on "Add Year to Post Date"</title>
			<link>http://www.kriesi.at/support/topic/add-year-to-post-date#post-53328</link>
			<pubDate>Wed, 25 Apr 2012 19:43:09 +0000</pubDate>
			<dc:creator>kaylesimon</dc:creator>
			<guid isPermaLink="false">53328@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is there any elegant way to add the year to the post date in the black box to the left of posts? We have a site that goes back several years and would love for that to be clearer....
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
