<?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>Logicfire</title>
	<atom:link href="http://logicfire.in/feed/" rel="self" type="application/rss+xml" />
	<link>http://logicfire.in</link>
	<description>Web Programming and Designing</description>
	<lastBuildDate>Sat, 28 Aug 2010 12:38:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Get WordPress User Id Displayed On Your Post/Page</title>
		<link>http://logicfire.in/get-wordpress-user-id-displayed-on-your-postpage/</link>
		<comments>http://logicfire.in/get-wordpress-user-id-displayed-on-your-postpage/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 12:04:13 +0000</pubDate>
		<dc:creator>Fire</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[ID]]></category>
		<guid isPermaLink="false">http://logicfire.in/?p=15</guid>
		<description><![CDATA[This  code snippet let you display you wordpress user&#8217;s ID number on Post or Page. How  To Use: 1. Copy and Paste this code in functions.php file of your wordpress theme. 2. Use  [DisplayUserID] this shortcode the display User's ID number on Post or Page.]]></description>
			<content:encoded><![CDATA[<p>This  code snippet let you display you wordpress user&#8217;s ID number on Post or Page.</p>
<pre class="qoate-code">&lt;?php function Display_user_ID_for_Me() {
&lt;pre&gt;global $current_user;
$current_user = wp_get_current_user();
return $current_user-&gt;ID;
}
add_shortcode('DisplayUserID', 'Display_user_ID_for_Me');
?&gt;</pre>
</pre>
<p>How  To Use:</p>
<p>1. Copy and Paste this code in functions.php file of your wordpress theme.</p>
<p>2. Use  [DisplayUserID] this shortcode the display User&#8217;s ID number on Post or Page.</p>
]]></content:encoded>
			<wfw:commentRss>http://logicfire.in/get-wordpress-user-id-displayed-on-your-postpage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
