<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WpFunc &#187; post</title>
	<atom:link href="http://wpfunc.com/tag/post/feed" rel="self" type="application/rss+xml" />
	<link>http://wpfunc.com</link>
	<description>Awesome, Quick, Simple WordPress Functions!</description>
	<lastBuildDate>Thu, 01 Dec 2011 01:17:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Add a Subscribe to my RSS message after every post</title>
		<link>http://wpfunc.com/wordpress/add-a-subscribe-to-my-rss-after-every-post.html</link>
		<comments>http://wpfunc.com/wordpress/add-a-subscribe-to-my-rss-after-every-post.html#comments</comments>
		<pubDate>Sat, 20 Feb 2010 20:51:03 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[subscribe]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=402</guid>
		<description><![CDATA[You can add a simple message after your every post. This is a simple code. Just open your single.php and add this code. That&#8217;s All!

Here is the code;
Open single.php and add this code after content code;
]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You can add a simple message after your every post. This is a simple code. Just open your single.php and add this code. That&#8217;s All!</p>
<p><span id="more-402"></span></p>
<h3>Here is the code;</h3>
<p>Open <span style="color: #ff0000;"><strong>single.php</strong></span> and add this code after<span style="color: #ff0000;"><strong> content</strong></span> code;</p>
<pre class="brush: php; title: ; notranslate">&lt;div style=&quot;padding:5px; border:1px solid #999999; margin-top:10px; background-color:#FFF8AF;&quot;&gt;
If you enjoyed this post, make sure you subscribe to my &lt;a href=&quot;&lt;?php bloginfo('rss2_url'); ?&gt;&quot;&gt;RSS Feed&lt;/a&gt;
&lt;/div&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/add-a-subscribe-to-my-rss-after-every-post.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Show Post Attachments!</title>
		<link>http://wpfunc.com/wordpress/show-post-attachments.html</link>
		<comments>http://wpfunc.com/wordpress/show-post-attachments.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 13:19:52 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[attachment]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[post attachments]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=290</guid>
		<description><![CDATA[In WordPress you can add attachments to your posts. Your articles be more interesting and shareable. WordPress have attachment manager and you can manage your attachments wtih this manager. Also you can show your attachments with a template code. Let&#8217;s Begin&#8230;
Here is the code;
Just copy and paste this code to your theme&#8217;s single.php or what [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">In WordPress you can add attachments to your posts. Your articles be more interesting and shareable. WordPress have attachment manager and you can manage your attachments wtih this manager. Also you can show your attachments with a template code. Let&#8217;s Begin&#8230;<span id="more-290"></span></p>
<h3 style="text-align: justify;">Here is the code;</h3>
<p style="text-align: justify;">Just copy and paste this code to your theme&#8217;s single.php or what your theme use the file to show posts. After that attachments will be shown.</p>
<pre class="brush: php; title: ; notranslate">// place inside loop
$args = array(
	'post_type' =&gt; 'attachment',
	'numberposts' =&gt; null,
	'post_status' =&gt; null,
	'post_parent' =&gt; $post-&gt;ID
);
$attachments = get_posts($args);
if ($attachments) {
	foreach ($attachments as $attachment) {
		echo apply_filters('the_title', $attachment-&gt;post_title);
		the_attachment_link($attachment-&gt;ID, false);
	}
}</pre>
<p>That&#8217;s All. Have a nice day.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/show-post-attachments.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make an Archives Page Template</title>
		<link>http://wpfunc.com/wordpress/make-an-archives-page-template.html</link>
		<comments>http://wpfunc.com/wordpress/make-an-archives-page-template.html#comments</comments>
		<pubDate>Fri, 02 Oct 2009 17:48:47 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[archive template]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[archives.php]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/wordpress/make-an-archives-page-template.html</guid>
		<description><![CDATA[As default themes have an archives.php. But if you want to make changes on your arcihves.php or if you&#8217;re an theme developer you can use this template quickly. You can get more information on Codex Page. Lets Begin&#8230;
Here is the code;
First Create an information and name area;
After that add these lines for page template; with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">As default themes have an archives.php. But if you want to make changes on your arcihves.php or if you&#8217;re an theme developer you can use this template quickly. You can get more information on <a href="http://codex.wordpress.org/Pages#Page_Templates" target="_blank">Codex Page</a>. Lets Begin&#8230;<span id="more-239"></span></p>
<h3>Here is the code;</h3>
<p style="text-align: justify;">First Create an information and name area;</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php
/*
Template Name: Archive page
*/
?&gt;</pre>
<p style="text-align: justify;">After that add these lines for page template; with this code you list all your articles.</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php
$posts_to_show = 100; //Max number of articles to display
$debut = 0; //The first article to be displayed
?&gt;
&lt;?php while(have_posts()) : the_post(); ?&gt;
&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;?php
$myposts = get_posts('numberposts=$posts_to_show&amp;offset=$debut');
foreach($myposts as $post) :
?&gt;
&lt;li&gt;&lt;?php the_time('d/m/y') ?&gt;: &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endforeach; ?&gt;
&lt;/ul&gt;
&lt;?php endwhile; ?&gt;</pre>
<p style="text-align: justify;">And add these lines for category and the others&#8230;</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php while(have_posts()) : the_post(); ?&gt;
&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
&lt;h2&gt;Categories&lt;/h2&gt;
&lt;ul&gt;&lt;?php wp_list_cats('sort_column=name&amp;optioncount=1') ?&gt;&lt;/ul&gt;
&lt;h2&gt;Monthly Archives&lt;/h2&gt;
&lt;ul&gt;&lt;?php wp_get_archives('type=monthly&amp;show_post_count=1') ?&gt;&lt;/ul&gt;
&lt;?php endwhile; ?&gt;</pre>
<p style="text-align: justify;">Now, save the <strong>articles.php</strong> and upload to your template&#8217;s area. Go to Pages &gt; New Page and select the Page Template with Archives.php.</p>
<p style="text-align: justify;">That&#8217;s All&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/make-an-archives-page-template.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change your Post/Page title with a custom field?</title>
		<link>http://wpfunc.com/wordpress/how-to-change-your-post-page-title-with-a-custom-field.html</link>
		<comments>http://wpfunc.com/wordpress/how-to-change-your-post-page-title-with-a-custom-field.html#comments</comments>
		<pubDate>Sun, 20 Sep 2009 23:57:22 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[custom title]]></category>
		<category><![CDATA[customizable titles]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=176</guid>
		<description><![CDATA[With this tip you can change and make post/page title customizable. That&#8217;s is so simple. Just copy this code and paste your single.php and page.php or where you want to change title. After that you have to create a new custom field which name is &#8220;custom-title&#8220;! After that you can write your custom title in [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">With this tip you can change and make post/page title customizable. That&#8217;s is so simple. Just copy this code and paste your <strong>single.php</strong> and <strong>page.php</strong> or where you want to change title. After that you have to create a new custom field which name is &#8220;<strong><span style="color: #ff0000;">custom-title</span></strong>&#8220;! After that you can write your custom title in this field.<span id="more-176"></span></p>
<h2>Here is the code;</h2>
<pre class="brush: plain; title: ; notranslate">&lt;?php $title = get_post_meta($post-&gt;ID, &quot;custom-title&quot;, true);
if ($title != &quot;&quot;) {
echo &quot;&lt;h1&gt;&quot;.$title.&quot;&lt;/h1&gt;&quot;;
} else { ?&gt;
&lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
&lt;?php } ?&gt;
</pre>
<p>That&#8217;s All! Have a nice day.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/how-to-change-your-post-page-title-with-a-custom-field.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add Comment RSS Link to Every Post</title>
		<link>http://wpfunc.com/wordpress/add-comment-rss-link-to-every-post.html</link>
		<comments>http://wpfunc.com/wordpress/add-comment-rss-link-to-every-post.html#comments</comments>
		<pubDate>Wed, 29 Jul 2009 09:03:18 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[single.php]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=133</guid>
		<description><![CDATA[Some of my friend asked me about Comment RSS Links. Some theme have a design for this , so there is a RSS Feed link in every post. You can add your Comment RSS link to your theme. If you want to add RSS lets begin&#8230;
Here is the code;
If you add this code to in [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Some of my friend asked me about Comment RSS Links. Some theme have a design for this , so there is a RSS Feed link in every post. You can add your Comment RSS link to your theme. If you want to add RSS lets begin&#8230;<span id="more-133"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: plain; title: ; notranslate">&lt;?php comments_rss_link('» Comments RSS Feed'); ?&gt;</pre>
<p>If you add this code to in the Loop of your theme&#8217;s <span style="color: #ff0000;"><em><strong>single.php</strong></em></span> you have a RSS link on every post.</p>
<p>That&#8217;s All. Have A nice Day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/add-comment-rss-link-to-every-post.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://wpfunc.com/general/hello-world.html</link>
		<comments>http://wpfunc.com/general/hello-world.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 19:50:23 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[first]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wpfunc.com/?p=1</guid>
		<description><![CDATA[That post is my really first post on this new blog. I think this site will grown up with you and your comments. I will post new and simple WordPress Functions on this blog.
Have a nice day!
]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">That post is my really first post on this new blog. I think this site will grown up with you and your comments. I will post new and simple WordPress Functions on this blog.</p>
<p style="text-align: justify;">Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/general/hello-world.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

