<?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>ultimate geek girl &#187; WordPress</title>
	<atom:link href="http://www.thepinkc.net/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thepinkc.net</link>
	<description></description>
	<lastBuildDate>Sun, 29 Aug 2010 15:54:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>5 Great WordPress Hacks</title>
		<link>http://www.thepinkc.net/wordpress/5-great-wordpress-hacks/</link>
		<comments>http://www.thepinkc.net/wordpress/5-great-wordpress-hacks/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 07:43:58 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=2382</guid>
		<description><![CDATA[WordPress is a great blogging and content-management tool. It is highly extensible, evidenced by the thousands of plugins available for it, but also the WordPress Codex, where you can learn all things related to making WordPress work best for you. Below, you&#8217;ll find 5 great WordPress hacks that add functionality to your site without sacrificing [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/stop-using-wordpress-plugins-top-3-wordpress-hacks/' rel='bookmark' title='Permanent Link: Stop Using WordPress Plugins &#8211; Top 3 WordPress Hacks'>Stop Using WordPress Plugins &#8211; Top 3 WordPress Hacks</a></li>
<li><a href='http://www.thepinkc.net/wordpress/what-are-your-top-5-wordpress-plugins/' rel='bookmark' title='Permanent Link: What are your top 5 WordPress plugins?'>What are your top 5 WordPress plugins?</a></li>
<li><a href='http://www.thepinkc.net/wordpress/develop-your-sites-seo-with-wordpress-plugins/' rel='bookmark' title='Permanent Link: Develop your site&#8217;s SEO with WordPress Plugins'>Develop your site&#8217;s SEO with WordPress Plugins</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-2207" title="wordpress" src="http://www.thepinkc.net/wp-content/uploads/2007/10/wordpress.jpg" alt="wordpress" width="150" height="150" />WordPress is a great blogging and content-management tool. It is highly extensible, evidenced by the thousands of plugins available for it, but also the WordPress Codex, where you can learn all things related to making WordPress work best for you.</p>
<p>Below, you&#8217;ll find 5 great WordPress hacks that add functionality to your site without sacrificing a lot of time or energy.</p>
<p><strong>1. List your upcoming posts.</strong> Do you write a lot of posts in advance? Generate buzz for them by posting a list of your upcoming posts in the sidebar. Paste the following code where you want the list to display:</p>
<blockquote><p>&lt;div id=&#8221;zukunft&#8221;&gt;<br />
&lt;div id=&#8221;zukunft_header&#8221;&gt;</p>
<p>Future events<br />
&lt;/div&gt;</p>
<p>&lt;?php query_posts(&#8216;showposts=10&amp;post_status=future&#8217;); ?&gt;<br />
&lt;?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;<br />
&lt;div&gt;<br />
&lt;p&gt;&lt;b&gt;&lt;?php the_title(); ?&gt;&lt;/b&gt;&lt;?php edit_post_link(&#8216;e&#8217;,&#8217; (&#8216;,&#8217;)'); ?&gt;</p>
<p>&lt;span&gt;&lt;?php the_time(&#8216;j. F Y&#8217;); ?&gt;&lt;/span&gt;<br />
&lt;/p&gt;&lt;/div&gt;</p>
<p>&lt;?php endwhile; else: ?&gt;</p>
<p>No future events scheduled.</p>
<p>&lt;?php endif; ?&gt;<br />
&lt;/div&gt;</p></blockquote>
<p><strong>2. Show your most popular posts without a plugin. </strong>Change the number 5 in line 4 to whatever number you want, for more or less popular posts to display.</p>
<blockquote><p>&lt;h2&gt;Popular Posts&lt;/h2&gt;<br />
&lt;ul&gt;<br />
&lt;?php $result = $wpdb-&gt;get_results(&#8220;SELECT comment_count,ID,post_title FROM $wpdb-&gt;posts ORDER BY comment_count DESC LIMIT 0 , 5&#8243;);<br />
foreach ($result as $post) {<br />
setup_postdata($post);<br />
$postid = $post-&gt;ID;<br />
$title = $post-&gt;post_title;<br />
$commentcount = $post-&gt;comment_count;<br />
if ($commentcount != 0) { ?&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_permalink($postid); ?&gt;&#8221; title=&#8221;&lt;?php echo $title ?&gt;&#8221;&gt;<br />
&lt;?php echo $title ?&gt;&lt;/a&gt; {&lt;?php echo $commentcount ?&gt;}&lt;/li&gt;<br />
&lt;?php } } ?&gt;</p>
<p>&lt;/ul&gt;</p></blockquote>
<p><strong>3. Send pages to Twitter</strong> by pasting this code where you want the link to display in single.php. Further modify by adding an image or the title of the individual post:</p>
<blockquote><p>&lt;a href=&#8221;http://twitter.com/home?status=Currently reading &lt;?php the_permalink(); ?&gt;&#8221; title=&#8221;Click to send this page to Twitter!&#8221; target=&#8221;_blank&#8221;&gt;Share on Twitter&lt;/a&gt;</p></blockquote>
<p><strong>4. List all of the authors of your blog.</strong> Helpful for providing links to authors&#8217; posts on your multi-author blog, just paste this code where you want the link to display:</p>
<blockquote><p>&lt;ul&gt;<br />
&lt;?php wp_list_authors(&#8216;exclude_admin=0&amp;optioncount=1&amp;show_fullname=1&amp;hide_empty=1&#8242;); ?&gt;<br />
&lt;/ul&gt;</p></blockquote>
<p>Edit the parameters to customize the display:</p>
<ul>
<li>exclude_admin: 0 (include the admin’s name in the authors list) / 1 (exclude the admin’s name from the list)</li>
<li>optioncount : 0 (No post count against the author’s name) / 1 (display post count against the author’s name)</li>
<li>show_fullname : 0 (display first name only) / 1 (display full name of the author)</li>
<li>hide_empty : 0 (display authors with no posts) / 1 (display authors who have one or more posts)</li>
</ul>
<p><strong>5. Post to your RSS feed 5 minutes later. </strong>Sometimes, we hit publish too soon and leave a typo or error in our post. Delaying the publishing of the feed for five minutes can save you a lot of embarrassment. Paste this code into your functions.php file on your theme.</p>
<blockquote><p>function publish_later_on_feed($where) {<br />
global $wpdb;</p>
<p>if ( is_feed() ) {<br />
// timestamp in WP-format<br />
$now = gmdate(&#8216;Y-m-d H:i:s&#8217;);</p>
<p>// value for wait; + device<br />
$wait = &#8217;5&#8242;; // integer</p>
<p>// http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_timestampdiff<br />
$device = &#8216;MINUTE&#8217;; //MINUTE, HOUR, DAY, WEEK, MONTH, YEAR</p>
<p>// add SQL-sytax to default $where<br />
$where .= &#8221; AND TIMESTAMPDIFF($device, $wpdb-&gt;posts.post_date_gmt, &#8216;$now&#8217;) &gt; $wait &#8220;;<br />
}<br />
return $where;<br />
}</p>
<p>add_filter(&#8216;posts_where&#8217;, &#8216;publish_later_on_feed&#8217;);</p></blockquote>
<p>Do you have a favorite hack? Tell us in the comments!</p>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/stop-using-wordpress-plugins-top-3-wordpress-hacks/' rel='bookmark' title='Permanent Link: Stop Using WordPress Plugins &#8211; Top 3 WordPress Hacks'>Stop Using WordPress Plugins &#8211; Top 3 WordPress Hacks</a></li>
<li><a href='http://www.thepinkc.net/wordpress/what-are-your-top-5-wordpress-plugins/' rel='bookmark' title='Permanent Link: What are your top 5 WordPress plugins?'>What are your top 5 WordPress plugins?</a></li>
<li><a href='http://www.thepinkc.net/wordpress/develop-your-sites-seo-with-wordpress-plugins/' rel='bookmark' title='Permanent Link: Develop your site&#8217;s SEO with WordPress Plugins'>Develop your site&#8217;s SEO with WordPress Plugins</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/5-great-wordpress-hacks/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>LinkWithin: Display Related Posts in a Fresher Style</title>
		<link>http://www.thepinkc.net/wordpress/linkwithin-display-related-posts-in-a-fresher-style/</link>
		<comments>http://www.thepinkc.net/wordpress/linkwithin-display-related-posts-in-a-fresher-style/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 07:18:27 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=2339</guid>
		<description><![CDATA[Most related posts plugins for WordPress work about the same. They generate a list of possibly related posts based on keywords and categories and display them simply at the end of a blog post. Everyone loves graphics nowadays, so why not combine photos and your related posts into clickable related posts that will grab a [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/automatically-add-links-to-related-sites/' rel='bookmark' title='Permanent Link: Automatically Add Links to Related Sites'>Automatically Add Links to Related Sites</a></li>
<li><a href='http://www.thepinkc.net/wordpress/5-great-wordpress-hacks/' rel='bookmark' title='Permanent Link: 5 Great WordPress Hacks'>5 Great WordPress Hacks</a></li>
<li><a href='http://www.thepinkc.net/geek-girl/update-on-pingcrawl-adding-pingbacks-automatically-to-wp-posts/' rel='bookmark' title='Permanent Link: Update on PingCrawl &#8211; Adding Pingbacks Automatically to WP Posts'>Update on PingCrawl &#8211; Adding Pingbacks Automatically to WP Posts</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linkwithin.com"><img class="alignleft size-full wp-image-2340" style="border: 0pt none; margin-left: 5px; margin-right: 5px;" title="linkwithin_logo" src="http://www.thepinkc.net/wp-content/uploads/2009/08/linkwithin_logo.png" alt="linkwithin_logo" width="150" height="34" /></a>Most related posts plugins for WordPress work about the same. They generate a list of possibly related posts based on keywords and categories and display them simply at the end of a blog post.</p>
<p>Everyone loves graphics nowadays, so why not combine photos and your related posts into clickable related posts that will grab a reader&#8217;s attention and keep them clicking for more? <a href="http://www.linkwithin.com">LinkWithin</a> does just that by generating 3 clickable related posts thumbnails based on relevancy, popularity, and date of publication. The WordPress widget requires no code modification of your theme files. The images and links display underneath your post on single post pages. LinkWithin also works with TypePad and Blogger. You can also get the widget code yourself and set it up on other blogging platforms, if necessary.</p>
<p style="text-align: left;"><img class="size-full wp-image-2341 aligncenter" title="LinkWithin" src="http://www.thepinkc.net/wp-content/uploads/2009/08/Picture-1.png" alt="LinkWithin" width="366" height="224" />Doesn&#8217;t that look far more attractive than a boring, dated list? <a href="http://www.linkwithin.com">LinkWithin</a> is free, with possibilities for money-making ventures like ads in the future. LinkWithin is not customizable, so what you see is what you get &#8211; three links and the link back to LinkWithin. However, who cares? The matches are pretty solid after only an hour of installation.</p>
<p style="text-align: left;">Are you using LinkWithin? If so, let us know what you think about this free service.</p>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/automatically-add-links-to-related-sites/' rel='bookmark' title='Permanent Link: Automatically Add Links to Related Sites'>Automatically Add Links to Related Sites</a></li>
<li><a href='http://www.thepinkc.net/wordpress/5-great-wordpress-hacks/' rel='bookmark' title='Permanent Link: 5 Great WordPress Hacks'>5 Great WordPress Hacks</a></li>
<li><a href='http://www.thepinkc.net/geek-girl/update-on-pingcrawl-adding-pingbacks-automatically-to-wp-posts/' rel='bookmark' title='Permanent Link: Update on PingCrawl &#8211; Adding Pingbacks Automatically to WP Posts'>Update on PingCrawl &#8211; Adding Pingbacks Automatically to WP Posts</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/linkwithin-display-related-posts-in-a-fresher-style/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What to do when your WordPress blog won&#8217;t load</title>
		<link>http://www.thepinkc.net/wordpress/what-to-do-when-your-wordpress-blog-wont-load/</link>
		<comments>http://www.thepinkc.net/wordpress/what-to-do-when-your-wordpress-blog-wont-load/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 10:52:27 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=1967</guid>
		<description><![CDATA[I just upgraded my WordPress installation, and lo-and-behold, my blog wouldn&#8217;t load after I upgraded! The administration panel loaded just fine, so I knew that it wasn&#8217;t a database error. So, I did a little poking around to see if I could find the cause of this error. First, I checked out my plugins &#8211; [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/plugin-deactivation-broke-your-blog/' rel='bookmark' title='Permanent Link: Plugin Deactivation Broke Your Blog?'>Plugin Deactivation Broke Your Blog?</a></li>
<li><a href='http://www.thepinkc.net/wordpress/upgraded-to-wp-23/' rel='bookmark' title='Permanent Link: Upgraded to WP 2.3'>Upgraded to WP 2.3</a></li>
<li><a href='http://www.thepinkc.net/wordpress/should-you-upgrade-to-wordpress-23/' rel='bookmark' title='Permanent Link: Should you upgrade to WordPress 2.3?'>Should you upgrade to WordPress 2.3?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2205" title="wordpress" src="http://www.thepinkc.net/wp-content/uploads/2009/06/wordpress.jpg" alt="wordpress" width="225" height="225" /></p>
<p>I just upgraded my WordPress installation, and lo-and-behold, my blog wouldn&#8217;t load after I upgraded! The administration panel loaded just fine, so I knew that it wasn&#8217;t a <a title="“Error Establishing a Database Connection” — How to Fix This WordPress Error" href="http://educhalk.org/blog/?p=148">database error</a>. So, I did a little poking around to see if I could find the cause of this error.</p>
<p>First, I checked out my plugins &#8211; it is possible that plugins may be incompatible with an updated version of WordPress. I disabled each one, then reloaded my website. No dice. Page still doesn&#8217;t load.</p>
<p>Now, on to re-enabling all of my plugins.</p>
<p>Once that is done, I say to myself, it has to be the theme &#8211; so I disable the theme I was using &#8211; <a title="SuperPress Theme" href="http://www.weborithm.com/products/go.php?r=69&amp;i=l2">SuperPress</a> &#8211; and yay &#8211; my site now loads. I&#8217;m a little confused as to why my theme would stop working, since it is 1) a premium theme and 2) from what I read, no major theme changes were made.</p>
<p>I downloaded a couple of other themes by other theme designers, and those themes would not work, either. Only the default WordPress themes worked with my WordPress installation.</p>
<p>If you upgrade your WordPress installation and get a blank page instead of your blog, first disable your plugins to rule out a buggy one, then check your theme to see if it is incompatible. If you have a buggy plugin, look for a replacement using <a title="WordPress Plugins" href="http://wordpress.org/extend/plugins/">WordPress.org</a> or check out my post &#8220;<a title="Top 3 WordPress Hacks" href="http://www.thepinkc.net/wordpress/stop-using-wordpress-plugins-top-3-wordpress-hacks/">Stop Using WordPress Plugins</a>&#8221; and learn how to customize your theme to add functionality of plugins without the bloat. If you suspect your theme is the culprit, disable it and choose one of the two default WordPress themes. If you still can&#8217;t get your site up and running at that point, look to the <a title="WordPress Support" href="http://wordpress.org/support/">WordPress forums</a> or <a title="#wordpress on Twitter" href="http://twitter.com/#search?q=%23wordpress">Twitter for assistance</a>.</p>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/plugin-deactivation-broke-your-blog/' rel='bookmark' title='Permanent Link: Plugin Deactivation Broke Your Blog?'>Plugin Deactivation Broke Your Blog?</a></li>
<li><a href='http://www.thepinkc.net/wordpress/upgraded-to-wp-23/' rel='bookmark' title='Permanent Link: Upgraded to WP 2.3'>Upgraded to WP 2.3</a></li>
<li><a href='http://www.thepinkc.net/wordpress/should-you-upgrade-to-wordpress-23/' rel='bookmark' title='Permanent Link: Should you upgrade to WordPress 2.3?'>Should you upgrade to WordPress 2.3?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/what-to-do-when-your-wordpress-blog-wont-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improve your WordPress Theme with Snippets of Code</title>
		<link>http://www.thepinkc.net/wordpress/improve-your-wordpress-theme-with-snippets-of-code/</link>
		<comments>http://www.thepinkc.net/wordpress/improve-your-wordpress-theme-with-snippets-of-code/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 10:43:50 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=1807</guid>
		<description><![CDATA[I love WordPress because it is so easy to modify to fit your needs. Some tweaks can make your theme more personal, others add functionality to tell your visitors more about you as a blogger. Take these four tweaks, add them to your WordPress blog, and see how it improves your blogging experience! Add the [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/5-great-wordpress-hacks/' rel='bookmark' title='Permanent Link: 5 Great WordPress Hacks'>5 Great WordPress Hacks</a></li>
<li><a href='http://www.thepinkc.net/wordpress/stop-using-wordpress-plugins-top-3-wordpress-hacks/' rel='bookmark' title='Permanent Link: Stop Using WordPress Plugins &#8211; Top 3 WordPress Hacks'>Stop Using WordPress Plugins &#8211; Top 3 WordPress Hacks</a></li>
<li><a href='http://www.thepinkc.net/wordpress/how-to-implement-tags-into-your-wordpress-theme/' rel='bookmark' title='Permanent Link: How to Implement Tags into your WordPress Theme'>How to Implement Tags into your WordPress Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I love WordPress because it is so easy to modify to fit your needs. Some tweaks can make your theme more personal, others add functionality to tell your visitors more about you as a blogger. Take these four tweaks, add them to your WordPress blog, and see how it improves your blogging experience!</p>
<p><strong>Add the number of posts</strong> to your sidebar:</p>
<blockquote>
<div class="wp_syntax">
<div class="code">
<pre class="php" style="font-family: monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$my_query</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #009900;">(</span><span style="color: #0000ff;">'post_status=future&amp;order=DESC&amp;showposts=5'</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">(</span><span style="color: #000088;">$my_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
    <span style="color: #b1b100;">while</span> <span style="color: #009900;">(</span><span style="color: #000088;">$my_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #009900;">)</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$my_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">the_post</span><span style="color: #009900;">(</span><span style="color: #009900;">)</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> the_title<span style="color: #009900;">(</span><span style="color: #009900;">)</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;">endwhile</span><span style="color: #339933;">;</span>
<span style="color: #009900;">}</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre>
</div>
</div>
</blockquote>
<p><strong>Add &#8220;Tweet This&#8221;</strong> to your posts by placing this code in &#8220;The Loop&#8221; in single.php</p>
<div class="wp_syntax">
<div class="code">
<pre class="php" style="font-family: monospace; padding-left: 30px;">&lt;a href="http://twitter.com/home?status=I just read <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>" title="Send this page to Twitter!" target="_blank"&gt;Tweet This!&lt;/a&gt;</pre>
</div>
</div>
<p>Add an <strong>additional &#8220;Edit&#8221; button</strong> to each post, where ever you need the code &#8211; add this code in either single.php or index.php, where ever your post code is :</p>
<div class="wp_syntax">
<div class="code">
<pre class="php" style="font-family: monospace; padding-left: 30px;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> edit_post_link<span style="color: #009900;">(</span><span style="color: #0000ff;">'Edit'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre>
</div>
</div>
<p><strong>Display your upcoming/scheduled posts</strong> in the sidebar:</p>
<div class="wp_syntax">
<div class="code">
<pre class="php" style="font-family: monospace; padding-left: 30px;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$my_query</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #009900;">(</span><span style="color: #0000ff;">'post_status=future&amp;order=DESC&amp;showposts=5'</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">(</span><span style="color: #000088;">$my_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
    <span style="color: #b1b100;">while</span> <span style="color: #009900;">(</span><span style="color: #000088;">$my_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #009900;">)</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$my_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">the_post</span><span style="color: #009900;">(</span><span style="color: #009900;">)</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> the_title<span style="color: #009900;">(</span><span style="color: #009900;">)</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;">endwhile</span><span style="color: #339933;">;</span>
<span style="color: #009900;">}</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre>
</div>
</div>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/5-great-wordpress-hacks/' rel='bookmark' title='Permanent Link: 5 Great WordPress Hacks'>5 Great WordPress Hacks</a></li>
<li><a href='http://www.thepinkc.net/wordpress/stop-using-wordpress-plugins-top-3-wordpress-hacks/' rel='bookmark' title='Permanent Link: Stop Using WordPress Plugins &#8211; Top 3 WordPress Hacks'>Stop Using WordPress Plugins &#8211; Top 3 WordPress Hacks</a></li>
<li><a href='http://www.thepinkc.net/wordpress/how-to-implement-tags-into-your-wordpress-theme/' rel='bookmark' title='Permanent Link: How to Implement Tags into your WordPress Theme'>How to Implement Tags into your WordPress Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/improve-your-wordpress-theme-with-snippets-of-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Power up your feed with Feedburner</title>
		<link>http://www.thepinkc.net/wordpress/power-up-your-feed-with-feedburner/</link>
		<comments>http://www.thepinkc.net/wordpress/power-up-your-feed-with-feedburner/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 10:08:53 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Better Blogger]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Web Application]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=1641</guid>
		<description><![CDATA[Are you using Feedburner for your RSS feed? Why not? Feedburner gives you stats on how many people read your feed, click on your posts and visit your site and more. Statistics are important to any blogger who really wants to improve their blogging experience. Plus, who doesn&#8217;t love bragging rights about how many readers [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/better-blogger/how-to-add-twit-this-to-your-feedburner-feedflare/' rel='bookmark' title='Permanent Link: How to: Add Twit This to your Feedburner FeedFlare'>How to: Add Twit This to your Feedburner FeedFlare</a></li>
<li><a href='http://www.thepinkc.net/technology/geek-girl-to-google-fix-feedburner/' rel='bookmark' title='Permanent Link: Geek Girl to Google: Fix Feedburner'>Geek Girl to Google: Fix Feedburner</a></li>
<li><a href='http://www.thepinkc.net/better-blogger/101-steps-step-2/' rel='bookmark' title='Permanent Link: Sign up for Feedburner: Step #2'>Sign up for Feedburner: Step #2</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Are you using Feedburner for your <a href="http://www.thepinkc.net/technology/what-exactly-is-rss/">RSS feed</a>? Why not?</p>
<p>Feedburner gives you stats on how many people read your feed, click on your posts and visit your site and more. Statistics are important to any blogger who really wants to improve their blogging experience. Plus, who doesn&#8217;t love bragging rights about how many readers (subscribers) you have?</p>
<p style="text-align: center;"><a title="How to exclude a category from your WordPress RSS Feedburner feed" href="http://www.flickr.com/photos/28694005@N07/3154786938/" target="_blank"><img src="http://farm4.static.flickr.com/3093/3154786938_14bbc10679_m.jpg" border="0" alt="How to exclude a category from your WordPress RSS Feedburner feed" /></a><br />
<small><a title="Attribution-ShareAlike License" href="http://creativecommons.org/licenses/by-sa/2.0/" target="_blank"><img src="http://www.thepinkc.net/wordpress/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="adria.richards" href="http://www.flickr.com/photos/28694005@N07/3154786938/" target="_blank">adria.richards</a></small></p>
<p>Make it easier for your readers to get your content into an online feed reader like <a href="http://www.google.com/reader">Google Reader</a> or <a href="http://www.netvibes.com/">Netvibes</a>, or a desktop program like <a href="http://www.newsgator.com/Individuals/FeedDemon/Default.aspx">FeedDemon</a>. Cutting down on daily visits to individual websites saves your readers time &#8211; and increases the opportunities you have to reach a wide audience.</p>
<p>Go ahead, power up your feed with Feedburner (<a href="http://www.google.com/support/feedburner/bin/topic.py?topic=13252">super-easy instructions</a>) and set up your feed with Feedburner.</p>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/better-blogger/how-to-add-twit-this-to-your-feedburner-feedflare/' rel='bookmark' title='Permanent Link: How to: Add Twit This to your Feedburner FeedFlare'>How to: Add Twit This to your Feedburner FeedFlare</a></li>
<li><a href='http://www.thepinkc.net/technology/geek-girl-to-google-fix-feedburner/' rel='bookmark' title='Permanent Link: Geek Girl to Google: Fix Feedburner'>Geek Girl to Google: Fix Feedburner</a></li>
<li><a href='http://www.thepinkc.net/better-blogger/101-steps-step-2/' rel='bookmark' title='Permanent Link: Sign up for Feedburner: Step #2'>Sign up for Feedburner: Step #2</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/power-up-your-feed-with-feedburner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mashup RSS feeds into Posts with RSSdoodle and Twitterdoodle</title>
		<link>http://www.thepinkc.net/wordpress/mashup-rss-feeds-into-posts-with-rssdoodle-and-twitterdoodle/</link>
		<comments>http://www.thepinkc.net/wordpress/mashup-rss-feeds-into-posts-with-rssdoodle-and-twitterdoodle/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 09:43:53 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=1643</guid>
		<description><![CDATA[The Lessnau Lounge brings to the table two great WordPress plugins &#8211; Twitterdoodle and RSSdoodle. Twitterdoodle allows you to create mashup posts (or roundups) of tweets about a specific topic being talked about on Twitter. For example, if you want to make a post about Apple iPods or your favorite tv show, Twitterdoodle has some [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/odiogo-listen-button-add-extra-functionality-for-your-posts/' rel='bookmark' title='Permanent Link: Odiogo Listen Button &#8211; Add extra functionality for your posts'>Odiogo Listen Button &#8211; Add extra functionality for your posts</a></li>
<li><a href='http://www.thepinkc.net/wordpress/writing-posts-in-advance-with-wordpress/' rel='bookmark' title='Permanent Link: Writing Posts in Advance with WordPress'>Writing Posts in Advance with WordPress</a></li>
<li><a href='http://www.thepinkc.net/wordpress/photo-dropper-makes-adding-pictures-to-your-posts-easier-than-ever/' rel='bookmark' title='Permanent Link: Photo Dropper Makes Adding Pictures to Your Posts Easier Than Ever'>Photo Dropper Makes Adding Pictures to Your Posts Easier Than Ever</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-2279" title="twitter21" src="http://www.thepinkc.net/wp-content/uploads/2009/01/twitter21.png" alt="twitter21" width="150" height="150" />The Lessnau Lounge brings to the table two great WordPress plugins &#8211;  <a href="http://www.lessnau.com/twitterdoodle/">Twitterdoodle</a> and <a href="http://www.lessnau.com/rssdoodle/">RSSdoodle</a>.</p>
<p><a href="http://www.lessnau.com/twitterdoodle/">Twitterdoodle</a> allows you to create mashup posts (or roundups) of tweets about a specific topic being talked about on Twitter. For example, if you want to make a post about Apple iPods or your favorite tv show, Twitterdoodle has some great features, such as an option to make posts go automatically to your category archives and not your blog&#8217;s front page.</p>
<p><a href="http://www.lessnau.com/rssdoodle/">RSSdoodle</a> works the same way, except it compiles lists of blog posts from around the web.</p>
<p>Check both of these plugins out &#8211; and I&#8217;ll be testing out <a href="http://www.lessnau.com/rssdoodle/">RSSdoodle</a> over the coming weeks.</p>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/odiogo-listen-button-add-extra-functionality-for-your-posts/' rel='bookmark' title='Permanent Link: Odiogo Listen Button &#8211; Add extra functionality for your posts'>Odiogo Listen Button &#8211; Add extra functionality for your posts</a></li>
<li><a href='http://www.thepinkc.net/wordpress/writing-posts-in-advance-with-wordpress/' rel='bookmark' title='Permanent Link: Writing Posts in Advance with WordPress'>Writing Posts in Advance with WordPress</a></li>
<li><a href='http://www.thepinkc.net/wordpress/photo-dropper-makes-adding-pictures-to-your-posts-easier-than-ever/' rel='bookmark' title='Permanent Link: Photo Dropper Makes Adding Pictures to Your Posts Easier Than Ever'>Photo Dropper Makes Adding Pictures to Your Posts Easier Than Ever</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/mashup-rss-feeds-into-posts-with-rssdoodle-and-twitterdoodle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Translate Your Blog in Three Easy Steps</title>
		<link>http://www.thepinkc.net/wordpress/translate-your-blog-in-three-easy-steps/</link>
		<comments>http://www.thepinkc.net/wordpress/translate-your-blog-in-three-easy-steps/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 16:01:47 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=1652</guid>
		<description><![CDATA[ZdMultilang is a WordPress plugin that helps you translate your blog posts, categories or tags in three easy steps. Once you install the plugin, your readers will be able to select the language they want to translate your site to, too! Install and activate the plugin via the WordPress administration screen or by manually downloading [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/better-blogger/101-steps-step-4/' rel='bookmark' title='Permanent Link: Optimize your blog for SEO: Step #4'>Optimize your blog for SEO: Step #4</a></li>
<li><a href='http://www.thepinkc.net/wordpress/plugin-deactivation-broke-your-blog/' rel='bookmark' title='Permanent Link: Plugin Deactivation Broke Your Blog?'>Plugin Deactivation Broke Your Blog?</a></li>
<li><a href='http://www.thepinkc.net/better-blogger/blog-and-ping-step-9-in-101-steps-to-becoming-a-better-blogger/' rel='bookmark' title='Permanent Link: Blog and Ping &#8211; Step #9 in 101 Steps to Becoming a Better Blogger'>Blog and Ping &#8211; Step #9 in 101 Steps to Becoming a Better Blogger</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.zen-dreams.com/en/zdmultilang/">ZdMultilang</a> is a WordPress plugin that helps you translate your blog posts, categories or tags in three easy steps. Once you install the plugin, your readers will be able to select the language they want to translate your site to, too!</p>
<ol>
<li>Install and activate the plugin via the WordPress administration screen or by <a href="http://www.zen-dreams.com/en/zdmultilang/">manually downloading from the site</a> and uploading to your server.</li>
<li>Select the language(s) you want to use on your site, using the directions on the plugin website.<br />
<img class="size-full wp-image-2213 aligncenter" title="languages" src="http://www.thepinkc.net/wp-content/uploads/2009/01/languages.png" alt="languages" width="475" height="352" /></li>
<li>Use the Options tab to set additional preferences, such as where you want to display the language switcher or whether or not to use flags as markers for language switching.<br />
<img class="aligncenter size-full wp-image-2214" title="translate-term" src="http://www.thepinkc.net/wp-content/uploads/2009/01/translate-term.png" alt="translate-term" width="452" height="164" /></li>
</ol>
<p>And now, in three easy steps, you have set your blog up to be more friendly to your international visitors &#8230; and you haven&#8217;t even broken a sweat!</p>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/better-blogger/101-steps-step-4/' rel='bookmark' title='Permanent Link: Optimize your blog for SEO: Step #4'>Optimize your blog for SEO: Step #4</a></li>
<li><a href='http://www.thepinkc.net/wordpress/plugin-deactivation-broke-your-blog/' rel='bookmark' title='Permanent Link: Plugin Deactivation Broke Your Blog?'>Plugin Deactivation Broke Your Blog?</a></li>
<li><a href='http://www.thepinkc.net/better-blogger/blog-and-ping-step-9-in-101-steps-to-becoming-a-better-blogger/' rel='bookmark' title='Permanent Link: Blog and Ping &#8211; Step #9 in 101 Steps to Becoming a Better Blogger'>Blog and Ping &#8211; Step #9 in 101 Steps to Becoming a Better Blogger</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/translate-your-blog-in-three-easy-steps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Survive the Digg-Effect with WP-Cache</title>
		<link>http://www.thepinkc.net/wordpress/survive-the-digg-effect-with-wp-cache/</link>
		<comments>http://www.thepinkc.net/wordpress/survive-the-digg-effect-with-wp-cache/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 09:55:36 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Web Browser]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=1650</guid>
		<description><![CDATA[In our wildest blogging dreams, we all hope to hit the front page of Digg with a well-written and popular post. To survive the large amount of traffic that will come your blog&#8217;s way whether you are on the front page of Digg, popular on StumbleUpon or getting loads of search engine traffic, install WP-Cache, [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/better-blogger/do-you-digg-and-stumble-on-request/' rel='bookmark' title='Permanent Link: Do you Digg and Stumble on Request?'>Do you Digg and Stumble on Request?</a></li>
<li><a href='http://www.thepinkc.net/wordpress/upgraded-to-wp-23/' rel='bookmark' title='Permanent Link: Upgraded to WP 2.3'>Upgraded to WP 2.3</a></li>
<li><a href='http://www.thepinkc.net/better-blogger/social-bookmarking-step-18/' rel='bookmark' title='Permanent Link: Social Bookmarking &#8211; Step #18'>Social Bookmarking &#8211; Step #18</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="border: 0pt none; margin: 5px 10px;" src="http://www.thepinkc.net/images/wpwedpc.jpg" alt="WordPress Wednesdays" width="150" height="150" />In our wildest blogging dreams, we all hope to hit the front page of Digg with a well-written and popular post.</p>
<p>To survive the large amount of traffic that will come your blog&#8217;s way whether you are on the front page of Digg, popular on StumbleUpon or getting loads of search engine traffic, install <a href="http://mnm.uib.es/gallir/wp-cache-2/">WP-Cache</a>, a well-known and popular WordPress plugin.</p>
<p>The concept behind WP-Cache is very simple. It simply builds static pages from your site, which will allow your site to stay up during major peaks in traffic. Other reasons to use WP-Cache include if you have limits on your bandwidth and want to cut back on server requests or if you usually have slow performance from your server.</p>
<p>For installation instructions and updates, visit the <a href="http://mnm.uib.es/gallir/wp-cache-2/">WP-Cache</a> website.</p>
<p>If you use WP-Cache, let us know how it works for you!</p>
<hr /><em><a title="WordPress Wednesdays" href="http://www.thepinkc.net/category/wordpress/">WordPress Wednesdays</a> features posts about plugins, themes and general usage of WordPress, the world&#8217;s most popular content management system!</em></p>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/better-blogger/do-you-digg-and-stumble-on-request/' rel='bookmark' title='Permanent Link: Do you Digg and Stumble on Request?'>Do you Digg and Stumble on Request?</a></li>
<li><a href='http://www.thepinkc.net/wordpress/upgraded-to-wp-23/' rel='bookmark' title='Permanent Link: Upgraded to WP 2.3'>Upgraded to WP 2.3</a></li>
<li><a href='http://www.thepinkc.net/better-blogger/social-bookmarking-step-18/' rel='bookmark' title='Permanent Link: Social Bookmarking &#8211; Step #18'>Social Bookmarking &#8211; Step #18</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/survive-the-digg-effect-with-wp-cache/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Make Leaving Comments on WP Blogs Easier</title>
		<link>http://www.thepinkc.net/wordpress/make-leaving-comments-on-wp-blogs-easier/</link>
		<comments>http://www.thepinkc.net/wordpress/make-leaving-comments-on-wp-blogs-easier/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 05:11:59 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Web Application]]></category>
		<category><![CDATA[Web Browser]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=1638</guid>
		<description><![CDATA[Leaving comments on WordPress powered blogs can be tiresome and frankly, tedious. There are two ways to work around this problem &#8211; one is a Firefox extension and the other is a browser bookmarklet. I&#8217;ve mentioned bookmarklets here before, and this one works just the same. Single click and drag this link (WordPress Comment) to [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/photo-dropper-makes-adding-pictures-to-your-posts-easier-than-ever/' rel='bookmark' title='Permanent Link: Photo Dropper Makes Adding Pictures to Your Posts Easier Than Ever'>Photo Dropper Makes Adding Pictures to Your Posts Easier Than Ever</a></li>
<li><a href='http://www.thepinkc.net/geek-girl/how-to-setup-multiple-home-pages-in-firefox/' rel='bookmark' title='Permanent Link: How to Setup Multiple Home Pages in Firefox'>How to Setup Multiple Home Pages in Firefox</a></li>
<li><a href='http://www.thepinkc.net/technology/how-to-increase-an-established-blogs-readership/' rel='bookmark' title='Permanent Link: How to: Increase an established blog&#8217;s readership'>How to: Increase an established blog&#8217;s readership</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="border: 0pt none; margin: 5px 10px;" src="http://www.thepinkc.net/images/wpwedpc.jpg" alt="WordPress Wednesdays" width="150" height="150" />Leaving comments on WordPress powered blogs can be tiresome and frankly, tedious.</p>
<p>There are two ways to work around this problem &#8211; one is a <a href="http://www.mozilla.com/en-US/firefox/" title="Firefox">Firefox</a> extension and the other is a browser bookmarklet.</p>
<p>I&#8217;ve mentioned <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.thepinkc.net%2Fgeek-girl%2Famazon-bookmarklet-for-associates%2Fcomment-page-1%2F&amp;ei=zohISejJA4uuef268IIB&amp;usg=AFQjCNFn4Bqg8JhGcp88u4rzT-A0tHJR4g&amp;sig2=sAddiKtnTrgkpvQeCnLXcA">bookmarklets</a> here before, and this one works just the same. <strong>Single click and drag this link (<a href="javascript:try {document.getElementById('author').value='Your name'; document.getElementById('email').value='youremail@gmail.com'; document.getElementById('url').value='blog.iamntz.com'; void(null)} catch(err){};try{document.getElementById('uname').value='Your Name'; document.getElementById('uurl').value='blog.iamntz.com'; void(null)} catch(err){};">WordPress Comment</a>) to your browser toolbar.</strong> Be sure to edit the name, email and website values after saving by right clicking on the link and going to preferences. A WordPress comments bookmarklet could come in handy on many blogs, but the developer says there are problems with some themes not having the right coding, so the fields do not automatically fill in. <em>Note: I have only tested on <a href="http://www.mozilla.com/en-US/firefox/" title="Firefox">Firefox</a> 3. (Source: <a href="http://dev.iamntz.com/tag/bookmarklets">i0nutzb</a>)</em></p>
<p><strong><a href="http://blog.bf-itservice.de/82/easycomment-firefox-extension#attachment_85">easyComment Firefox Extension</a></strong>, mentioned on the <a href="http://weblogtoolscollection.com/archives/2008/12/16/easycomment-firefox-extension/">Weblog Tools Collection</a>, enables you to click once to comment on WordPress powered sites without having to reenter your information again and again. This extension even has a pre-written message, so you can write in your name, signature or a greeting in advance.</p>
<div id="attachment_1639" class="wp-caption aligncenter" style="width: 400px"><img class="size-full wp-image-1639" title="easyComment Extension" src="http://www.thepinkc.net/wordpress/wp-content/uploads/2008/12/preferences.png" alt="easyComment Extension" width="400" height="520" /><p class="wp-caption-text">easyComment Extension Interface</p></div>
<p>Do you prefer one of these options over another? Or do you have a different way to fill out comment forms?</p>
<hr /><em><a title="WordPress Wednesdays" href="http://www.thepinkc.net/category/wordpress/">WordPress Wednesdays</a> features posts about plugins, themes and general usage of WordPress, the world&#8217;s most popular content management system!</em></p>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/photo-dropper-makes-adding-pictures-to-your-posts-easier-than-ever/' rel='bookmark' title='Permanent Link: Photo Dropper Makes Adding Pictures to Your Posts Easier Than Ever'>Photo Dropper Makes Adding Pictures to Your Posts Easier Than Ever</a></li>
<li><a href='http://www.thepinkc.net/geek-girl/how-to-setup-multiple-home-pages-in-firefox/' rel='bookmark' title='Permanent Link: How to Setup Multiple Home Pages in Firefox'>How to Setup Multiple Home Pages in Firefox</a></li>
<li><a href='http://www.thepinkc.net/technology/how-to-increase-an-established-blogs-readership/' rel='bookmark' title='Permanent Link: How to: Increase an established blog&#8217;s readership'>How to: Increase an established blog&#8217;s readership</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/make-leaving-comments-on-wp-blogs-easier/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What is YOUR favorite WordPress Plugin? [Contest]</title>
		<link>http://www.thepinkc.net/wordpress/what-is-your-favorite-wordpress-plugin/</link>
		<comments>http://www.thepinkc.net/wordpress/what-is-your-favorite-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 15:12:34 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Best of]]></category>
		<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Contest]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.thepinkc.net/?p=1614</guid>
		<description><![CDATA[Over the next 24 hours, let us know what your favorite WordPress plugin is &#8211; and you&#8217;ll be entered to win a $10 Amazon gift certificate! The winner will be selected randomly and announced on Friday, December 12, 2008 at 12:00 pm EST! Congrats, John Lessnau and to all who entered. John, you will receive [...]


Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/plugin-deactivation-broke-your-blog/' rel='bookmark' title='Permanent Link: Plugin Deactivation Broke Your Blog?'>Plugin Deactivation Broke Your Blog?</a></li>
<li><a href='http://www.thepinkc.net/wordpress/changing-to-the-new-wordpress-tags-system/' rel='bookmark' title='Permanent Link: Changing to the new WordPress Tags System'>Changing to the new WordPress Tags System</a></li>
<li><a href='http://www.thepinkc.net/wordpress/how-to-implement-tags-into-your-wordpress-theme/' rel='bookmark' title='Permanent Link: How to Implement Tags into your WordPress Theme'>How to Implement Tags into your WordPress Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="border: 0pt none; margin: 5px 10px;" src="http://www.thepinkc.net/images/wpwedpc.jpg" alt="WordPress Wednesdays" width="150" height="150" />Over the next 24 hours, <strong>let us know what your favorite WordPress plugin</strong> is &#8211; and you&#8217;ll be entered to win a $10 Amazon gift certificate!</p>
<p>The winner will be selected randomly and <span style="text-decoration: line-through;">announced on Friday, December 12, 2008 at 12:00 pm EST!</span></p>
<p><center><iframe src="http://rcm.amazon.com/e/cm?t=thepinkc-20&#038;o=1&#038;p=26&#038;l=ur1&#038;category=gift_certificates&#038;banner=0R5VKBP8JA8DQHRMND02&#038;f=ifr" width="468" height="60" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"></iframe></center>  </p>
<h3><span style="color: #ff0000;">Congrats, <a href="http://www.lessnau.com/">John Lessnau</a> and to all who entered. John, you will receive your gift certificate today, and I would like to THANK all of you for entering!</span></h3>
<hr /><em><a title="WordPress Wednesdays" href="http://www.thepinkc.net/category/wordpress/">WordPress Wednesdays</a> features posts about plugins, themes and general usage of WordPress, the world&#8217;s most popular content management system!</em></p>
 

<p>Related posts:<ol><li><a href='http://www.thepinkc.net/wordpress/plugin-deactivation-broke-your-blog/' rel='bookmark' title='Permanent Link: Plugin Deactivation Broke Your Blog?'>Plugin Deactivation Broke Your Blog?</a></li>
<li><a href='http://www.thepinkc.net/wordpress/changing-to-the-new-wordpress-tags-system/' rel='bookmark' title='Permanent Link: Changing to the new WordPress Tags System'>Changing to the new WordPress Tags System</a></li>
<li><a href='http://www.thepinkc.net/wordpress/how-to-implement-tags-into-your-wordpress-theme/' rel='bookmark' title='Permanent Link: How to Implement Tags into your WordPress Theme'>How to Implement Tags into your WordPress Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thepinkc.net/wordpress/what-is-your-favorite-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
