<?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>WP Skinner &#187; Tips &amp; Tutorials</title>
	<atom:link href="http://www.wpskinner.com/category/articles/tips-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpskinner.com</link>
	<description>Wordpress Themes, Tutorials and Tips</description>
	<lastBuildDate>Sun, 12 Jun 2011 18:48:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>How to Install WordPress Locally on Mac OS X 10.5 Leopard</title>
		<link>http://www.wpskinner.com/2010/07/15/how-to-install-wordpress-locally-on-mac-os-x-10-5-leopard/</link>
		<comments>http://www.wpskinner.com/2010/07/15/how-to-install-wordpress-locally-on-mac-os-x-10-5-leopard/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 07:47:25 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=6174</guid>
		<description><![CDATA[Most Mac developers and designers who use WordPress install a local version of it the first thing after they do an OS installation. With Mac OS X 10.5 Leopard, people have encountered a number of difficulties while trying to install WordPress locally. Here are the steps you can take to install a local copy of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Most <strong>Mac</strong> developers and designers who use <strong>WordPress</strong> install a local version of it the first thing after they do an OS installation. With <strong>Mac OS X 10.5 Leopard</strong>, people have encountered a number of difficulties while trying to install WordPress locally.</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-6184" title="wplocal-powerbook" src="http://www.wpskinner.com/wp-content/uploads/2010/07/wplocal-powerbook.jpg" alt="wplocal powerbook How to Install WordPress Locally on Mac OS X 10.5 Leopard" width="447" height="263" /></p>
<p style="text-align: left;">Here are the steps you can take to install a <strong>local</strong> copy of WordPress.</p>
<p><span style="color: #ff6600;">Step 1</span>: Download the Mac version of <strong>MySQL</strong> from <a href="http://mysql.org/downloads/mysql" target="_blank">here</a>.</p>
<p><span style="color: #ff6600;">Step 2</span>: Now install the MySQL package. The preference pane can be installed by dragging MySQL.prefPane to /Library/PreferencePanes however it is not very helpful as there is a bug that prevents MySQL from being started with this.</p>
<p><span style="color: #ff6600;">Step 3</span>: Manually start MySQL by typing this in one terminal window:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">sudo <span style="color: #66cc66;">/</span>usr<span style="color: #66cc66;">/</span><span style="color: #993333; font-weight: bold;">LOCAL</span><span style="color: #66cc66;">/</span>mysql<span style="color: #66cc66;">/</span>bin<span style="color: #66cc66;">/</span>safe_mysqld</pre></div></div>

<p><span style="color: #ff6600;">Step 4</span>: Close the terminal window and open another one. Type in the following and restart MySQL each time by rebooting the system:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">sudo mkdir <span style="color: #66cc66;">/</span>var<span style="color: #66cc66;">/</span>mysql<span style="color: #66cc66;">/</span>
sudo ln <span style="color: #66cc66;">-</span>s <span style="color: #66cc66;">/</span>tmp<span style="color: #66cc66;">/</span>mysql<span style="color: #66cc66;">.</span>sock <span style="color: #66cc66;">/</span>var<span style="color: #66cc66;">/</span>mysql<span style="color: #66cc66;">/</span>mysql<span style="color: #66cc66;">.</span>sock</pre></div></div>

<p><span style="color: #ff6600;">Step 5</span>: You will need to substitute your chosen MySQL root password for {ROOTPASS} and the Bonjour computer name (shown at the top of Sharing in System Preferences) for {HOST}.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">$ mysql <span style="color: #66cc66;">-</span>u root
<span style="color: #66cc66;">&gt;</span> <span style="color: #993333; font-weight: bold;">DROP</span> <span style="color: #993333; font-weight: bold;">DATABASE</span> test;
<span style="color: #66cc66;">&gt;</span> <span style="color: #993333; font-weight: bold;">DELETE</span> <span style="color: #993333; font-weight: bold;">FROM</span> mysql<span style="color: #66cc66;">.</span><span style="color: #993333; font-weight: bold;">USER</span> <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #993333; font-weight: bold;">USER</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">''</span>;
<span style="color: #66cc66;">&gt;</span> <span style="color: #993333; font-weight: bold;">FLUSH</span> privileges;
<span style="color: #66cc66;">&gt;</span> <span style="color: #993333; font-weight: bold;">SET</span> password <span style="color: #993333; font-weight: bold;">FOR</span> root@localhost <span style="color: #66cc66;">=</span> password<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'{ROOTPASS}'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&gt;</span> <span style="color: #993333; font-weight: bold;">SET</span> password <span style="color: #993333; font-weight: bold;">FOR</span> root@127<span style="color: #66cc66;">.</span>0<span style="color: #66cc66;">.</span>0<span style="color: #66cc66;">.</span>1 <span style="color: #66cc66;">=</span> password<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'{ROOTPASS}'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&gt;</span> <span style="color: #993333; font-weight: bold;">SET</span> password <span style="color: #993333; font-weight: bold;">FOR</span> <span style="color: #ff0000;">'root'</span>@<span style="color: #ff0000;">'{HOST}.local'</span> <span style="color: #66cc66;">=</span> password<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'{ROOTPASS}'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&gt;</span> quit</pre></div></div>

<p><span style="color: #ff6600;">Step 6</span>: Now comes creating the WordPress MySQL database and user. {ROOTPASS} will be the same. In the following example, a database named wordpress is created and a username wpuser is granted privileges.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">$ mysql <span style="color: #66cc66;">-</span>u root <span style="color: #66cc66;">-</span>p
Enter Password: <span style="color: #66cc66;">&#123;</span>ROOTPASS<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&gt;</span> <span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">DATABASE</span> wordpress;
<span style="color: #66cc66;">&gt;</span> <span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">ALL</span> privileges <span style="color: #993333; font-weight: bold;">ON</span> wordpress<span style="color: #66cc66;">.*</span> <span style="color: #993333; font-weight: bold;">TO</span> wpuser@localhost <span style="color: #993333; font-weight: bold;">IDENTIFIED</span> <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #ff0000;">'foo'</span>;
<span style="color: #66cc66;">&gt;</span> <span style="color: #993333; font-weight: bold;">SET</span> password <span style="color: #993333; font-weight: bold;">FOR</span> wpuser@localhost <span style="color: #66cc66;">=</span> old_password<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'wppass'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&gt;</span> quit</pre></div></div>

<p><span style="color: #ff6600;">Step 7</span>: Turning on <strong>PHP</strong> is fairly easy. Open the file /etc/apache2/httpd.conf.</p>
<p><span style="color: #ff6600;">Step 8</span>: Remove the “#” from the following line # LoadModule php5_module and save the file.</p>
<p><span style="color: #ff6600;">Step 9</span>: Finally you can install WordPress. Download and extract WordPress from <a href="http://wordpress.org/" target="_blank">here</a>.</p>
<p><span style="color: #ff6600;">Step 10</span>: Copy the extracted contents to your Sites folder under your user name.</p>
<p><span style="color: #ff6600;">Step 11</span>: In the Sites folder, open wp-config-sample.php and save it as wp-config.php</p>
<p><span style="color: #ff6600;">Step 12</span>: Change the following first lines of the document to point to your database.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">define<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'DB_NAME'</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'wordpress'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #66cc66;">//</span> The name <span style="color: #993333; font-weight: bold;">OF</span> the <span style="color: #993333; font-weight: bold;">DATABASE</span>
define<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'DB_USER'</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'wpuser'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #66cc66;">//</span> Your MySQL username
define<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'DB_PASSWORD'</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'wppass'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #66cc66;">//</span> …<span style="color: #993333; font-weight: bold;">AND</span> password
define<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'DB_HOST'</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'localhost:/tmp/mysql.sock'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #66cc66;">//</span> <span style="color: #cc66cc;">99</span>% chance<span style="color: #66cc66;">...</span></pre></div></div>

<p><span style="color: #ff6600;">Step 13</span>: Restart <strong>apache</strong> by typing this in the terminal:</p>
<p>sudo apachectl restart</p>
<p><span style="color: #ff6600;">Step 14</span>: Commence installation by using your browser to navigate to your installation folder. Replace “user” with your username:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">http:<span style="color: #66cc66;">//</span>localhost<span style="color: #66cc66;">/</span>~<span style="color: #993333; font-weight: bold;">USER</span><span style="color: #66cc66;">/</span>wp<span style="color: #66cc66;">-</span>admin<span style="color: #66cc66;">/</span>install<span style="color: #66cc66;">.</span>php</pre></div></div>

<p><span style="color: #ff6600;">Step 15</span>: People facing problems might have to update their virtual hosts with the following command: Again, replace “user” with your username:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">sudo cp <span style="color: #66cc66;">/</span>etc<span style="color: #66cc66;">/</span>httpd<span style="color: #66cc66;">/</span>users<span style="color: #66cc66;">/</span><span style="color: #993333; font-weight: bold;">USER</span><span style="color: #66cc66;">.</span>conf <span style="color: #66cc66;">/</span>etc<span style="color: #66cc66;">/</span>apache2<span style="color: #66cc66;">/</span>users<span style="color: #66cc66;">/</span><span style="color: #993333; font-weight: bold;">USER</span><span style="color: #66cc66;">.</span>conf</pre></div></div>

<p><span style="color: #ff6600;">Step 16</span>: Restart apache once again with:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">sudo apachectl restart</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/07/15/how-to-install-wordpress-locally-on-mac-os-x-10-5-leopard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Importance of Social Skills in Website Designing</title>
		<link>http://www.wpskinner.com/2010/07/14/the-importance-of-social-skills-in-website-designing/</link>
		<comments>http://www.wpskinner.com/2010/07/14/the-importance-of-social-skills-in-website-designing/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 09:39:59 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=6135</guid>
		<description><![CDATA[Web designers and developers today start out without having extensive prior knowledge about coding. They do not go to art or graphic designing school. They decide to make websites and start self educating. That is how many designers start out. These self educated designers believe in themselves and many of them accomplish a lot – [...]]]></description>
			<content:encoded><![CDATA[<p>Web designers and developers today start out without having extensive prior knowledge about coding. They do not go to art or graphic designing school. They decide to make websites and start self educating. That is how many designers start out.</p>
<p>These self educated designers believe in themselves and many of them accomplish a lot – they can brilliantly create designs and websites that have flow and are well connected. But because they have learned everything themselves, they often become overambitious and try doing more where less is needed.</p>
<p>Many sites are becoming unnecessarily complicated. Site creators should learn that their designs need to be accessible for the average internet user. Account creation is one great example of this. If somebody wants to create an account on your site, he should not have to hunt for the “Sign Up” button – the button should be right there, catching the visitor’s attention. Similarly the account creation page should not require any instructions. Its flow should be simple to follow and understand.</p>
<p>Here is an image extract from HuffDuffer’s signup page:</p>
<p><img class="alignnone size-full wp-image-6140" title="clip_image001_thumb" src="http://www.wpskinner.com/wp-content/uploads/2010/07/clip_image001_thumb1.gif" alt="clip image001 thumb1 The Importance of Social Skills in Website Designing" width="550" height="286" /></p>
<p><a href="http://thumbpress.com/wp-content/uploads/2010/07/clip_image001.gif"></a></p>
<p>You can see how simple and user friendly the account creation page was made. HuffDuffer realizes the need to have social skills in their websites. People visiting a site want a nice change and something that presents information in a conversational manner is surely appreciated.</p>
<p>Sifter’s support page utilizes a similar social skill pattern.</p>
<p><img class="alignnone size-full wp-image-6141" title="clip_image002_thumb" src="http://www.wpskinner.com/wp-content/uploads/2010/07/clip_image002_thumb1.gif" alt="clip image002 thumb1 The Importance of Social Skills in Website Designing" width="550" height="286" /></p>
<p><a href="http://thumbpress.com/wp-content/uploads/2010/07/clip_image002.gif"></a></p>
<p>Any visitor with a complaint or question will not only enter his summary but also learn when to expect a response.</p>
<p>Incorporating such simple social skills into one’s website can add a great deal of charm to the site. While interactive design and tools are important social skills are a key element in today’s successful websites.</p>
<p><img class="alignnone size-full wp-image-6142" title="clip_image004_thumb1" src="http://www.wpskinner.com/wp-content/uploads/2010/07/clip_image004_thumb11.jpg" alt="clip image004 thumb11 The Importance of Social Skills in Website Designing" width="550" height="666" /></p>
<p><a href="http://thumbpress.com/wp-content/uploads/2010/07/clip_image0041.jpg"></a></p>
<p>A site with a brilliant design that lacks a conversational manner is the internet-equivalent of somebody with great looks but an unimpressive personality. Try adding that ‘personality’ feature to your website to make it stand out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/07/14/the-importance-of-social-skills-in-website-designing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Show Your Blog&#8217;s Most Popular Posts Without Using Any Plugin</title>
		<link>http://www.wpskinner.com/2010/07/13/show-your-blogs-most-popular-posts-without-using-any-plugin/</link>
		<comments>http://www.wpskinner.com/2010/07/13/show-your-blogs-most-popular-posts-without-using-any-plugin/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 09:46:20 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=6112</guid>
		<description><![CDATA[To show your visitors Most Popular Posts from your blog you can use the following code. This code snippet will gather a list of top posts based on comments count on that post. More comments to a post makes it more popular. 1 2 3 4 5 6 7 8 9 10 11 12 13 [...]]]></description>
			<content:encoded><![CDATA[<p>To show your visitors <strong>Most Popular Posts</strong> from your blog you can use the following <strong>code</strong>. This code snippet will gather a list of <strong>top posts</strong> based on <strong>comments count</strong> on that post. More comments to a post makes it more popular.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;h2&gt;Popular Posts&lt;/h2&gt;
&lt;ul&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT comment_count,ID,post_title FROM <span style="color: #006699; font-weight: bold;">$wpdb-&gt;posts</span> ORDER BY comment_count DESC LIMIT 0 , 5&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
setup_postdata<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$postid</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$title</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_title</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$commentcount</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">comment_count</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$commentcount</span> <span style="color: #339933;">!=</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&lt;li&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postid</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; title=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$title</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$title</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt; {<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$commentcount</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>}&lt;/li&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/ul&gt;</pre></td></tr></table></div>

<p>You can add this code to your <strong>Sidebar.php</strong> if you want to show Most Popular Post List in your blog&#8217;s sidebar. If you want to show more than 5 posts at a time simply find <strong>comment_count DESC LIMIT 0 , 5&#8243;);</strong> in above code and change &#8216;<strong>5</strong>&#8216; to 10 or 15.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/07/13/show-your-blogs-most-popular-posts-without-using-any-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Delay RSS Feed Update When You Publish a New Post</title>
		<link>http://www.wpskinner.com/2010/07/13/how-to-delay-rss-feed-update-when-you-publish-a-new-post/</link>
		<comments>http://www.wpskinner.com/2010/07/13/how-to-delay-rss-feed-update-when-you-publish-a-new-post/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 07:12:44 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=6092</guid>
		<description><![CDATA[Normally when you publish a new post on your blog, Your RSS readers get blog updates instantly. If you tend to make errors while writing posts such as title mistakes and spelling mistakes then probably you&#8217;ll face load of embarrassment when your readers point out your spell mistake or typo. This little WordPress hack can [...]]]></description>
			<content:encoded><![CDATA[<p>Normally when you publish a new post on your blog, Your <strong>RSS readers</strong> get <strong>blog updates</strong> instantly. If you tend to make errors while writing posts such as title mistakes and spelling mistakes then probably you&#8217;ll face load of embarrassment when your readers point out your spell mistake or typo.</p>
<p>This little <strong>WordPress hack</strong> can save you from such bad times. Following piece of <strong>code</strong> will <strong>delay RSS feed update</strong> for 5 minutes when you update your blog. You can easily increase<strong> RSS update delay time</strong>.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> publish_later_on_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$where</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_feed<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #666666; font-style: italic;">// timestamp in WP-format</span>
<span style="color: #000088;">$now</span> <span style="color: #339933;">=</span> <span style="color: #990000;">gmdate</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Y-m-d H:i:s'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// value for wait; + device</span>
<span style="color: #000088;">$wait</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'5'</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// integer</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_timestampdiff</span>
<span style="color: #000088;">$device</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'MINUTE'</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//MINUTE, HOUR, DAY, WEEK, MONTH, YEAR</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// add SQL-sytax to default $where</span>
<span style="color: #000088;">$where</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot; AND TIMESTAMPDIFF(<span style="color: #006699; font-weight: bold;">$device</span>, <span style="color: #006699; font-weight: bold;">$wpdb-&gt;posts</span>.post_date_gmt, '<span style="color: #006699; font-weight: bold;">$now</span>') &gt; <span style="color: #006699; font-weight: bold;">$wait</span> &quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">return</span> <span style="color: #000088;">$where</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'posts_where'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'publish_later_on_feed'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Increase or Decrease update delay:<br />
In the above code find <strong>$wait = &#8217;5&#8242;; // integer</strong> and change 5 to anything you like. If you want to increase more than an hour find <strong>$device = &#8216;MINUTE&#8217;;</strong> and change it to MINUTE, HOUR, DAY, WEEK, MONTH or YEAR.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/07/13/how-to-delay-rss-feed-update-when-you-publish-a-new-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate List of Authors and Contributors in WordPress</title>
		<link>http://www.wpskinner.com/2010/07/13/generate-list-of-authors-and-contributors-in-wordpress/</link>
		<comments>http://www.wpskinner.com/2010/07/13/generate-list-of-authors-and-contributors-in-wordpress/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 06:21:10 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=6078</guid>
		<description><![CDATA[If you run a Multi Author Blog and wish to list all the Author and contributors name in a list manner then following code can help you easily. Simple paste the following code anywhere in your theme where you want Author list to be appeared. For example open sidebar.php and paste the following code. 1 [...]]]></description>
			<content:encoded><![CDATA[<p>If you run a <strong>Multi Author Blog</strong> and wish to list all the <strong>Author</strong> and <strong>contributors</strong> name in a list manner then following code can help you easily.</p>
<p>Simple paste the following <strong>code</strong> anywhere in your theme where you want <strong>Author list</strong> to be appeared. For example open <strong>sidebar.php</strong> and paste the following code.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;ul&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_authors<span style="color: #009900;">&#40;</span>‘exclude_admin<span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">&amp;</span>optioncount<span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">&amp;</span>show_fullname<span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">&amp;</span>hide_empty<span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span>′<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/ul&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/07/13/generate-list-of-authors-and-contributors-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Share Post On Twitter Link for WordPress</title>
		<link>http://www.wpskinner.com/2010/07/13/share-post-on-twitter-link-for-wordpress/</link>
		<comments>http://www.wpskinner.com/2010/07/13/share-post-on-twitter-link-for-wordpress/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 06:14:10 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=6074</guid>
		<description><![CDATA[It is always good to put social icons on your WordPress posts so visitors can share you post across Social Media Websites. This way you can get extra visits from twitter when anybody Tweet about your blog post. Simple put the following code in Single.php file that can be found in your theme folder. 1 [...]]]></description>
			<content:encoded><![CDATA[<p>It is always good to put social icons on your WordPress posts so visitors can share you post across Social Media Websites. This way you can get extra visits from twitter when anybody Tweet about your blog post.</p>
<p>Simple put the following code in Single.php file that can be found in your theme folder.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;a href=”http://twitter.com/home?status=Currently reading <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>” title=”Click to send this page to Twitter!” target=”_blank”&gt;Share on Twitter&lt;/a&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/07/13/share-post-on-twitter-link-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to: List Upcoming/Scheduled Posts in WordPress</title>
		<link>http://www.wpskinner.com/2010/07/12/how-to-list-upcomingscheduled-posts-in-wordpress/</link>
		<comments>http://www.wpskinner.com/2010/07/12/how-to-list-upcomingscheduled-posts-in-wordpress/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 10:35:00 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=6032</guid>
		<description><![CDATA[If you Schedule posts on daily basis and don&#8217;t let your post que go empty you may want to display a list of pending or upcoming posts. This way you can gather interest of your visitors and they possibly will subscribe to your blog. Simply put the following code anywhere in your WordPress blog theme [...]]]></description>
			<content:encoded><![CDATA[<p>If you Schedule posts on daily basis and don&#8217;t let your post que go empty you may want to display a list of pending or upcoming posts. This way you can gather interest of your visitors and they possibly will subscribe to your blog.</p>
<p>Simply put the following code anywhere in your WordPress blog theme file to show list of upcoming posts.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">Upcomming Posts:
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> query_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'showposts=10&amp;post_status=future'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> <span style="color: #000000; font-weight: bold;">&lt;?php</span> edit_post_link<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'e'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">' ('</span><span style="color: #339933;">,</span><span style="color: #0000ff;">')'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&lt;span&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'j. F Y'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/span&gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">else</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
No future events scheduled.
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/07/12/how-to-list-upcomingscheduled-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Customize WordPress Dashboard By Add/Remove Widgets</title>
		<link>http://www.wpskinner.com/2010/07/10/how-to-customize-wordpress-dashboard-by-addremove-widgets/</link>
		<comments>http://www.wpskinner.com/2010/07/10/how-to-customize-wordpress-dashboard-by-addremove-widgets/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 17:59:19 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=6023</guid>
		<description><![CDATA[WordPress version 2.7+ allow you to add or remove dashboard widgets to customize it  the way you want to. Luckily this tweak is also very easy and requires very minimal coding. All you need to do is to paste the following code in your Functions.php file. It will remove all the widgets available in your [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WordPress</strong> version 2.7+ allow you to add or remove <strong>dashboard widgets</strong> to <strong>customize</strong> it  the way you want to. Luckily this <strong>tweak</strong> is also very easy and requires very minimal coding.</p>
<p>All you need to do is to paste the following <strong>code</strong> in your <strong>Functions.php</strong> file. It will remove all the <strong>widgets</strong> available in your <strong>dashboard</strong> further after you can try and <strong>Add</strong>/<strong>Remove</strong> lines starting with <span style="color: #ff0000;"><em>unset($wp_meta_boxes&#8230;</em></span> to keep or remove the widgets you want.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> remove_dashboard_widgets<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_meta_boxes</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$wp_meta_boxes</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'side'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'core'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard_quick_press'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$wp_meta_boxes</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'normal'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'core'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard_incoming_links'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$wp_meta_boxes</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'normal'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'core'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard_right_now'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$wp_meta_boxes</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'normal'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'core'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard_plugins'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$wp_meta_boxes</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'normal'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'core'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard_recent_drafts'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$wp_meta_boxes</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'normal'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'core'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard_recent_comments'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$wp_meta_boxes</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'side'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'core'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard_primary'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$wp_meta_boxes</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'side'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'core'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'dashboard_secondary'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>current_user_can<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'manage_options'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_dashboard_setup'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'remove_dashboard_widgets'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/07/10/how-to-customize-wordpress-dashboard-by-addremove-widgets/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to: Display dates as “time ago” in WordPress</title>
		<link>http://www.wpskinner.com/2010/07/10/how-to-display-dates-as-%e2%80%9ctime-ago%e2%80%9d-in-wordpress/</link>
		<comments>http://www.wpskinner.com/2010/07/10/how-to-display-dates-as-%e2%80%9ctime-ago%e2%80%9d-in-wordpress/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 17:41:37 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=6018</guid>
		<description><![CDATA[If you are looking to show WordPress post dates like &#8216;Posted 2 hours ago&#8217; then you landed on the right place. Just paste the code in your WordPress theme where you want to show the time and date. This human readable Time/Date showing method also work with comments. For Posts: 1 Posted &#60;?php echo human_time_diff&#40;get_the_time&#40;'U'&#41;, [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking to show <strong>WordPress post dates</strong> like &#8216;Posted 2 hours ago&#8217; then you landed on the right place. Just paste the <strong>code</strong> in your WordPress theme where you want to show the<strong> time and date</strong>. This human readable <strong>Time</strong>/<strong>Date</strong> showing method also work with comments.</p>
<p><strong>For Posts:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">Posted <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> human_time_diff<span style="color: #009900;">&#40;</span>get_the_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'U'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> current_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'timestamp'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'ago'</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><strong>For Comments:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">Posted <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> human_time_diff<span style="color: #009900;">&#40;</span>get_comment_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'U'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> current_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'timestamp'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'ago'</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/07/10/how-to-display-dates-as-%e2%80%9ctime-ago%e2%80%9d-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Easily Create Custom WordPress Themes</title>
		<link>http://www.wpskinner.com/2010/03/15/how-to-easily-create-make-custom-wordpress-themes/</link>
		<comments>http://www.wpskinner.com/2010/03/15/how-to-easily-create-make-custom-wordpress-themes/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 19:55:26 +0000</pubDate>
		<dc:creator>MOin</dc:creator>
				<category><![CDATA[Plugins & Tools]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.wpskinner.com/?p=2979</guid>
		<description><![CDATA[Remember the days when you had to be a coding expert to be able to design a great website? Well those days are long gone. Today we can use great websites like Stiqr to get the web designing job done by simply ‘sticking’ things. The idea behind Stiqr is quite simple: letting users modify their [...]]]></description>
			<content:encoded><![CDATA[<p>Remember the days when you had to be a coding expert to be able to design a great website? Well those days are long gone. Today we can use great websites like <a href="http://www.stiqr.com/" target="_blank">Stiqr</a> to get the web designing job done by simply ‘sticking’ things.</p>
<p><a href="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr1.jpg"><img class="aligncenter size-medium wp-image-2980" title="stiqr1" src="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr1-400x80.jpg" alt="stiqr1 400x80 How to Easily Create Custom WordPress Themes" width="400" height="80" /></a></p>
<p>The idea behind Stiqr is quite simple: letting users modify their website without having them type a single line of code. The site works best on WordPress, Blogger, and Tumblr.</p>
<p>The homepage of the site has great appeal and lets us get right down to business with its GET STARTED NOW button.</p>
<p><a href="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr2.jpg"><img class="aligncenter size-full wp-image-2981" title="stiqr2" src="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr2.jpg" alt="stiqr2 How to Easily Create Custom WordPress Themes" width="347" height="308" /></a></p>
<p>All the instructions and guidelines to follow are right there on the site. A tutorial video has been uploaded on to YouTube to show how the site’s controls work (get to the video by clicking <a href="http://www.youtube.com/watch?v=B-ff53t8TuU&amp;feature=player_embedded#at=16" target="_blank">here</a>). Basically we are given a canvas on which we drag and arrange the page items which we want.</p>
<p><a href="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr3.jpg"><img class="aligncenter size-medium wp-image-2982" title="stiqr3" src="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr3-400x176.jpg" alt="stiqr3 400x176 How to Easily Create Custom WordPress Themes" width="400" height="176" /></a><a href="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr4.jpg"><img class="aligncenter size-medium wp-image-2983" title="stiqr4" src="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr4-399x322.jpg" alt="stiqr4 399x322 How to Easily Create Custom WordPress Themes" width="399" height="322" /></a></p>
<p>Stiqr changes the HTML/CSS code on the fly as you make changes to the visuals of the site. If you are developer who is tired of rewriting the HTML/CSS code once you get up the site, you can easily use Stiqr to make changes to your site’s outlook.</p>
<p>What Stiqr says:</p>
<blockquote><p>Stick and place things to your webpage now. Straight from your browser, live!</p>
<p>Stiqr™, is a website modification platform-as-a-service, that delivers on-demand site editing tools and applications to your site without any coding on your part.</p>
<p><strong>New features:</strong><br />
- SEO Optimization<br />
- Manage my stickers<br />
- Snap to grid<br />
- Dockable sidebar menu</p>
<p><strong>In the works:</strong><br />
- Apps<br />
- Templates<br />
- Integration with Kernest</p>
<p>Go from Photoshop mockup to a cross-browser website in a matter of few clicks.</p></blockquote>
<p>This is how Stiqr Theme edit works, you get everything on board just drag and drop where ever you want things to be.</p>
<p><a href="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr5.png"><img class="aligncenter size-medium wp-image-2984" title="stiqr5" src="http://www.wpskinner.com/wp-content/uploads/2010/03/stiqr5-400x299.png" alt="stiqr5 400x299 How to Easily Create Custom WordPress Themes" width="400" height="299" /></a></p>
<p>Whether you want to modify an existing site or create a new site from scratch, Stiqr is a highly user-friendly option you cannot afford to overlook. You absolutely do not need any coding knowledge to make your custom WordPress theme go ahead and try <a href="http://www.stiqr.com/" target="_blank">Stiqr</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpskinner.com/2010/03/15/how-to-easily-create-make-custom-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

