<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>WordPress for Beginners</title>
	
	<link>http://www.wpbeginner.com</link>
	<description>Beginner's Guide for WordPress</description>
	<lastBuildDate>Sat, 13 Mar 2010 11:38:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/wpbeginner" /><feedburner:info uri="wpbeginner" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>wpbeginner</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to Exclude Latest Post from the WordPress Post Loop</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/mIS7AGdVwKw/</link>
		<comments>http://www.wpbeginner.com/wp-themes/how-to-exclude-latest-post-from-the-wordpress-post-loop/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 11:38:30 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[how to exclude latest post from the loop]]></category>
		<category><![CDATA[how to exclude latest post from WordPress post loop]]></category>
		<category><![CDATA[how to exclude latest posts from wordpress loop]]></category>
		<category><![CDATA[how to offset posts in wordpress loop]]></category>
		<category><![CDATA[how to use wp_query]]></category>
		<category><![CDATA[remove latest posts from custom post loop]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1371</guid>
		<description><![CDATA[Excluding latest posts from the loop and/or offset posts in the loop is one of the things that comes in handy when editing or designing themes. In this article we will show you how you can use the offset parameter in wp_query function to exclude latest posts from the WordPress post loop.<p><a href="http://www.wpbeginner.com/wp-themes/how-to-exclude-latest-post-from-the-wordpress-post-loop/">How to Exclude Latest Post from the WordPress Post Loop</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/how-to-exclude-sticky-posts-from-the-loop-in-wordpress/' rel='bookmark' title='Permanent Link: How to Exclude Sticky Posts from the Loop in WordPress'>How to Exclude Sticky Posts from the Loop in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/how-to-display-any-number-of-posts-in-a-wordpress-loop/' rel='bookmark' title='Permanent Link: How to Display Any Number of Posts in a WordPress Loop'>How to Display Any Number of Posts in a WordPress Loop</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-display-the-latest-sticky-posts-in-wordpress/' rel='bookmark' title='Permanent Link: How to Display the Latest Sticky Posts in WordPress'>How to Display the Latest Sticky Posts in WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Excluding latest posts from the loop and/or offset posts in the loop is one of the things that comes in handy when editing or designing themes. In this article we will show you how you can use the offset parameter in wp_query function to exclude latest posts from the WordPress post loop.</p>
<p>First you will need to find the loop that you are working with. Then you will need to add the following parameter:</p>
<blockquote><p>query_posts(&#39;posts_per_page=5&amp;offset=1&#39;);</p></blockquote>
<p>This query is telling the loop to only display 5 posts which follow the most recent post (1). The important part in this code is &#8220;offset&#8221; and this magic word is doing the whole thing. </p>
<p>Your loop code should look like:</p>
<blockquote><p>&lt;?php<br />
query_posts(&#39;posts_per_page=6&amp;offset=1&#39;);<br />
if ( have_posts() ) : while ( have_posts() ) : the_post();<br />
?&gt;</p></blockquote>
<p>This should be it. If you have any questions feel free to ask via comments.</p>
<p>Source: <a href="http://codex.wordpress.org/Template_Tags/query_posts#Offset_Parameter" target="_blank" rel="nofollow">WP Codex</a></p>
<p><a href="http://www.wpbeginner.com/wp-themes/how-to-exclude-latest-post-from-the-wordpress-post-loop/">How to Exclude Latest Post from the WordPress Post Loop</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/how-to-exclude-sticky-posts-from-the-loop-in-wordpress/' rel='bookmark' title='Permanent Link: How to Exclude Sticky Posts from the Loop in WordPress'>How to Exclude Sticky Posts from the Loop in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/how-to-display-any-number-of-posts-in-a-wordpress-loop/' rel='bookmark' title='Permanent Link: How to Display Any Number of Posts in a WordPress Loop'>How to Display Any Number of Posts in a WordPress Loop</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-display-the-latest-sticky-posts-in-wordpress/' rel='bookmark' title='Permanent Link: How to Display the Latest Sticky Posts in WordPress'>How to Display the Latest Sticky Posts in WordPress</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=mIS7AGdVwKw:T3xH0bpnMiY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=mIS7AGdVwKw:T3xH0bpnMiY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=mIS7AGdVwKw:T3xH0bpnMiY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=mIS7AGdVwKw:T3xH0bpnMiY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=mIS7AGdVwKw:T3xH0bpnMiY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=mIS7AGdVwKw:T3xH0bpnMiY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=mIS7AGdVwKw:T3xH0bpnMiY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=mIS7AGdVwKw:T3xH0bpnMiY:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/mIS7AGdVwKw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-themes/how-to-exclude-latest-post-from-the-wordpress-post-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-themes/how-to-exclude-latest-post-from-the-wordpress-post-loop/</feedburner:origLink></item>
		<item>
		<title>MadBlogger Free WordPress Theme by WordPress Madness</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/z3frhdPxEAA/</link>
		<comments>http://www.wpbeginner.com/free-wordpress-themes/madblogger-free-wordpress-theme-by-wordpress-madness/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 11:51:30 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>
		<category><![CDATA[blog style wordpress themes]]></category>
		<category><![CDATA[free themes for wordpress]]></category>
		<category><![CDATA[free wordpress theme]]></category>
		<category><![CDATA[madblogger free theme for wordpress]]></category>
		<category><![CDATA[madblogger wordpress theme]]></category>
		<category><![CDATA[wpmadness]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1378</guid>
		<description><![CDATA[Federico Moreno of <a href="http://wpmadness.com/" target="_blank" rel="nofollow">WordPress Madness</a> have submitted his free theme to be published on WPBeginner. MAD Blogger is a free WordPress theme bloggers, and/or photographers. This design features a clean look with smooth shadowing to improve the readability of  blog content. <p><a href="http://www.wpbeginner.com/free-wordpress-themes/madblogger-free-wordpress-theme-by-wordpress-madness/">MadBlogger Free WordPress Theme by WordPress Madness</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/free-wordpress-themes/guerrilla-v2-free-wordpress-theme-by-giant-themes/' rel='bookmark' title='Permanent Link: Guerrilla v2: Free WordPress Theme by Giant Themes'>Guerrilla v2: Free WordPress Theme by Giant Themes</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/youare-wordpress-theme-for-free/' rel='bookmark' title='Permanent Link: YouAre WordPress Theme for Free'>YouAre WordPress Theme for Free</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/free-notepad-theme-for-wordpress-by-n-design-studio/' rel='bookmark' title='Permanent Link: Free Notepad Theme for WordPress by N.Design Studio'>Free Notepad Theme for WordPress by N.Design Studio</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Federico Moreno of <a href="http://wpmadness.com/" target="_blank" rel="nofollow">WordPress Madness</a> have submitted his free theme to be published on WPBeginner. MAD Blogger is a free WordPress theme bloggers, and/or photographers. This design features a clean look with smooth shadowing to improve the readability of  blog content. </p>
<p><a href="http://wpmadness.com/demo/madblogger/" target="_blank" rel="nofollow"><img src="http://www.wpbeginner.com/blogpostsimages/freewpthemes/madblogger.gif" alt="Guerrilla v2 Theme for WordPress" style="padding: 5px; border: 1px solid #ddd;" /></a></p>
<p>(Click on the Image for Live Demo)</p>
<h4>Features</h4>
<ol>
<li>3 color schemes (blue, purple and orange) &#8211; Or add your own with 5 lines of CSS codes</li>
<li>Multiple Sidebar Support</li>
<li>MadPanel (Theme Options Panel) with plenty of options to play with.</li>
<li>Dynamic Auto-sizing Thumbnails</li>
</ol>
<p><img src="http://www.wpbeginner.com/blogpostsimages/freewpthemes/madbloggeroptions.gif" alt="Madblogger WordPress Theme" style="padding: 5px; border: 1px solid #ddd;" /></p>
<h4><a href="http://wpmadness.com/2010/02/mad-blogger/" target="_blank" rel="nofollow">Download Now</a></h4>
<p>Note to Designers: You can also submit your free WordPress themes for us to review and share with WPBeginner&#8217;s audience. Use our <a href="http://www.wpbeginner.com/make-a-suggestion/">Make a Suggestion</a> form.</p>
<p><a href="http://www.wpbeginner.com/free-wordpress-themes/madblogger-free-wordpress-theme-by-wordpress-madness/">MadBlogger Free WordPress Theme by WordPress Madness</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/free-wordpress-themes/guerrilla-v2-free-wordpress-theme-by-giant-themes/' rel='bookmark' title='Permanent Link: Guerrilla v2: Free WordPress Theme by Giant Themes'>Guerrilla v2: Free WordPress Theme by Giant Themes</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/youare-wordpress-theme-for-free/' rel='bookmark' title='Permanent Link: YouAre WordPress Theme for Free'>YouAre WordPress Theme for Free</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/free-notepad-theme-for-wordpress-by-n-design-studio/' rel='bookmark' title='Permanent Link: Free Notepad Theme for WordPress by N.Design Studio'>Free Notepad Theme for WordPress by N.Design Studio</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=z3frhdPxEAA:qO6H7GGWtf4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=z3frhdPxEAA:qO6H7GGWtf4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=z3frhdPxEAA:qO6H7GGWtf4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=z3frhdPxEAA:qO6H7GGWtf4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=z3frhdPxEAA:qO6H7GGWtf4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=z3frhdPxEAA:qO6H7GGWtf4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=z3frhdPxEAA:qO6H7GGWtf4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=z3frhdPxEAA:qO6H7GGWtf4:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/z3frhdPxEAA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/free-wordpress-themes/madblogger-free-wordpress-theme-by-wordpress-madness/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/free-wordpress-themes/madblogger-free-wordpress-theme-by-wordpress-madness/</feedburner:origLink></item>
		<item>
		<title>How to Exclude Sticky Posts from the Loop in WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/c0a3kb2lFeU/</link>
		<comments>http://www.wpbeginner.com/wp-themes/how-to-exclude-sticky-posts-from-the-loop-in-wordpress/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:30:26 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[do not show sticky posts from the loop]]></category>
		<category><![CDATA[exclude sticky posts from the loop]]></category>
		<category><![CDATA[hide sticky posts from the loop]]></category>
		<category><![CDATA[remove sticky posts from the loop]]></category>
		<category><![CDATA[remove sticky posts from wp loop]]></category>
		<category><![CDATA[remove sticky posts from wp post loop]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1369</guid>
		<description><![CDATA[Sticky posts is one of the cool features that WordPress has, but sometimes you do not want to have sticky posts in your loop. In this article, we will show you how to completely exclude sticky posts from the loop in WordPress, and we will also show you how you can take away the sticky feature of the post, so it still shows in their natural order.<p><a href="http://www.wpbeginner.com/wp-themes/how-to-exclude-sticky-posts-from-the-loop-in-wordpress/">How to Exclude Sticky Posts from the Loop in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/how-to-exclude-latest-post-from-the-wordpress-post-loop/' rel='bookmark' title='Permanent Link: How to Exclude Latest Post from the WordPress Post Loop'>How to Exclude Latest Post from the WordPress Post Loop</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-display-the-latest-sticky-posts-in-wordpress/' rel='bookmark' title='Permanent Link: How to Display the Latest Sticky Posts in WordPress'>How to Display the Latest Sticky Posts in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/how-to-display-any-number-of-posts-in-a-wordpress-loop/' rel='bookmark' title='Permanent Link: How to Display Any Number of Posts in a WordPress Loop'>How to Display Any Number of Posts in a WordPress Loop</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wpbeginner.com/beginners-guide/how-to-make-sticky-posts-in-wordpress/">Sticky posts</a> is one of the cool features that WordPress has, but sometimes you do not want to have sticky posts in your loop. In this article, we will show you how to completely exclude sticky posts from the loop in WordPress, and we will also show you how you can take away the sticky feature of the post, so it still shows in their natural order.</p>
<h4>How to take away the Sticky Ability of the Post</h4>
<p>When you are displaying <a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-recent-posts-in-wordpress/">most recent posts</a> in a tab, you do not want the sticky posts to stay sticky. If you do not remove the sticky features, the recent posts area would be useless as all of your sticky posts will crowd this area. This is when query_posts feature comes in handy.</p>
<p>To do this you will need to change your loop to something like this:</p>
<blockquote><p>&lt;?php<br />
query_posts(&#39;caller_get_posts=1&#39;);<br />
if ( have_posts() ) : while ( have_posts() ) : the_post();<br />
?&gt;</p></blockquote>
<h4>Completely exclude Sticky posts from the Loop</h4>
<p>If you are using Sticky posts in a slider, then sometimes you might want to completely exclude your sticky posts from the loop. All what you have to do is edit your custom loop to match with this:</p>
<blockquote><p>&lt;?php<br />
query_posts(array(&quot;post__not_in&quot; =&gt;get_option(&quot;sticky_posts&quot;)));<br />
if ( have_posts() ) : while ( have_posts() ) : the_post();<br />
?&gt;</p></blockquote>
<p>This code will not display any sticky posts in the post loop. </p>
<p>Source: <a href="http://codex.wordpress.org/Template_Tags/query_posts#Sticky_Post_Parameters" target="_blank" rel="nofollow">WP Codex</a></p>
<p><a href="http://www.wpbeginner.com/wp-themes/how-to-exclude-sticky-posts-from-the-loop-in-wordpress/">How to Exclude Sticky Posts from the Loop in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/how-to-exclude-latest-post-from-the-wordpress-post-loop/' rel='bookmark' title='Permanent Link: How to Exclude Latest Post from the WordPress Post Loop'>How to Exclude Latest Post from the WordPress Post Loop</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-display-the-latest-sticky-posts-in-wordpress/' rel='bookmark' title='Permanent Link: How to Display the Latest Sticky Posts in WordPress'>How to Display the Latest Sticky Posts in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/how-to-display-any-number-of-posts-in-a-wordpress-loop/' rel='bookmark' title='Permanent Link: How to Display Any Number of Posts in a WordPress Loop'>How to Display Any Number of Posts in a WordPress Loop</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c0a3kb2lFeU:rJkBQIajMEQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c0a3kb2lFeU:rJkBQIajMEQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=c0a3kb2lFeU:rJkBQIajMEQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c0a3kb2lFeU:rJkBQIajMEQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c0a3kb2lFeU:rJkBQIajMEQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c0a3kb2lFeU:rJkBQIajMEQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=c0a3kb2lFeU:rJkBQIajMEQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c0a3kb2lFeU:rJkBQIajMEQ:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/c0a3kb2lFeU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-themes/how-to-exclude-sticky-posts-from-the-loop-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-themes/how-to-exclude-sticky-posts-from-the-loop-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>Manage Your Ads in WordPress with OIO Publisher (Review)</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/uLTFI1c2uHc/</link>
		<comments>http://www.wpbeginner.com/plugins/manage-your-ads-in-wordpress-with-oio-publisher-review/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:06:05 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[best ad manager for wordpress]]></category>
		<category><![CDATA[oio publisher]]></category>
		<category><![CDATA[oio publisher review]]></category>
		<category><![CDATA[what is oio publisher]]></category>
		<category><![CDATA[wordpress ad manager]]></category>
		<category><![CDATA[wordpress ad manager plugin]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1374</guid>
		<description><![CDATA[When it comes to controlling ad space on WordPress blogs, there are few options out there. In this article we will be sharing a highly reputed commercial Ad Manager plugin known as <a href="http://www.wpbeginner.com/refer/oiopublisher" target="_blank" rel="nofollow">OIO Publisher</a>. The goal of this plugin is to maximize your revenue, save you time, and keep you in control of your ad space.<p><a href="http://www.wpbeginner.com/plugins/manage-your-ads-in-wordpress-with-oio-publisher-review/">Manage Your Ads in WordPress with OIO Publisher (Review)</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/plugins/21-great-plugins-to-manage-multi-author-blogs-efficiently-and-successfully/' rel='bookmark' title='Permanent Link: 21 Great Plugins to Manage Multi-Author Blogs Efficiently'>21 Great Plugins to Manage Multi-Author Blogs Efficiently</a></li>
<li><a href='http://www.wpbeginner.com/plugins/allow-your-users-to-subscribe-to-comments-in-wordpress/' rel='bookmark' title='Permanent Link: Allow your users to Subscribe to Comments in WordPress'>Allow your users to Subscribe to Comments in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/plugins/recommended-plugins-for-wordpress/' rel='bookmark' title='Permanent Link: Recommended Plugins for WordPress'>Recommended Plugins for WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When it comes to controlling ad space on WordPress blogs, there are few options out there. In this article we will be sharing a highly reputed commercial Ad Manager plugin known as <a href="http://www.wpbeginner.com/refer/oiopublisher" target="_blank" rel="nofollow">OIO Publisher</a>. The goal of this plugin is to maximize your revenue, save you time, and keep you in control of your ad space.</p>
<p><a href="http://www.wpbeginner.com/refer/oiopublisher" target="_blank" rel="nofollow"><img src="http://www.wpbeginner.com/blogposts/oiopub.gif" alt="OIO Publisher" /></a></p>
<h2>What Can You Do with <a href="http://www.wpbeginner.com/refer/oiopublisher" style="" target="_blank" rel="nofollow" onmouseover="self.status='OIO Publisher - Best Plugin for Managing the Ads';return true;" onmouseout="self.status=''">OIO Publisher</a>?</h2>
<p><a href="http://www.wpbeginner.com/refer/oiopublisher" style="" target="_blank" rel="nofollow" onmouseover="self.status='OIO Publisher - Best Plugin for Managing the Ads';return true;" onmouseout="self.status=''">OIO Publisher</a> allows you to place ad spots throughout your web site in the zones that you like, and then go out there and sell those ads. It allows you to pick what size ads you want, and how much should they cost. It also integrates with several payment options such as PayPal and 2Checkout.</p>
<p><img src="http://www.wpbeginner.com/blogposts/oiopubsettings.gif" alt="OIO Publisher Settings" /></p>
<p>This plugin is full with features. You get to set zones and in each zone you can choose how many ads will be displayed. You have an option to make the ads rotate. You can offer buyers the opportunity to buy several months of advertising at a discount pricing or you can do monthly subscription. All of this is and much more can be done through the straight forward administration panel.</p>
<p>There is a default banner that reads Advertise here. When a buyer clicks on one of your Advertise Here links, they will be taken to your sales page. This page will be generated by this plugin. Here the users can fill out their information, upload their advertisement image, and choose the payment method. Once they submit an ad, it waits for your approval before it is published on the site. Once you’ve approved the advertisement, <a href="http://www.wpbeginner.com/refer/oiopublisher" style="" target="_blank" rel="nofollow" onmouseover="self.status='OIO Publisher - Best Plugin for Managing the Ads';return true;" onmouseout="self.status=''">OIO Publisher</a> will run the ad for the period that you were paid for, and it will email out statistics on how the ad is doing to the buyer. If your sponsor subscribed for month to month payment, OIO Publisher checks with paypal or their payment method to see if the payment was made. If the subscription was cancelled, it will notify you, and automatically remove the ad from the site.</p>
<p>Screenshot for the Payment Form</p>
<p><img src="http://www.wpbeginner.com/blogposts/oiopayment.gif" alt="OIO Publisher Payment Form" /></p>
<p>Screenshot for Advertiser Report</p>
<p><img src="http://www.wpbeginner.com/blogposts/oioreport.gif" alt="OIO Publisher Advertiser Report" /></p>
<p>There are also options for offering pay-per-post, digital downloads, and affiliate programs. All at rates you set in the administrative panel.</p>
<h2>Our Opinion</h2>
<p><a href="http://www.wpbeginner.com/refer/oiopublisher" rel="nofollow" target="_blank">OIO Publisher</a> is a great product that will put you in control. It is very easy to implement and use, but this product does not guarantee that you will have plenty of advertisers. You will still have to do the hard work in order to get advertisers to purchase the ads from your site.</p>
<p>The downside of OIO Publisher when compared to services like <a href="http://buysellads.com/" rel="nofollow" target="_blank">BuySellAds</a> is that these services have a huge advertising base, and they can drive advertisers to your sites. Even though OIO Publisher have a marketplace section on their website, it is no where near as powerful as BuySellAds. You will still have to do a lot of work to get advertisers to your site. </p>
<p>The plus side of using OIO Publisher is that you get to keep 100% of the profits from selling the ad spots whereas on services like BuySellAds, there is a middle man fee that you pay. </p>
<p><strong>Cost of this Plugin:</strong> $47 (<a href="www.wpbeginner.com/refer/oiopublisher" target="_blank" rel="nofollow">$10 OFF Coupon for WPBeginner Users</a>)</p>
<p>This is a one-time fee, and you can use this plugin on as many domains as you want (as long as you own them). You will also get outstanding support from OIO Publisher team when needed for this one-time fee.</p>
<p><a href="http://www.wpbeginner.com/plugins/manage-your-ads-in-wordpress-with-oio-publisher-review/">Manage Your Ads in WordPress with OIO Publisher (Review)</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/plugins/21-great-plugins-to-manage-multi-author-blogs-efficiently-and-successfully/' rel='bookmark' title='Permanent Link: 21 Great Plugins to Manage Multi-Author Blogs Efficiently'>21 Great Plugins to Manage Multi-Author Blogs Efficiently</a></li>
<li><a href='http://www.wpbeginner.com/plugins/allow-your-users-to-subscribe-to-comments-in-wordpress/' rel='bookmark' title='Permanent Link: Allow your users to Subscribe to Comments in WordPress'>Allow your users to Subscribe to Comments in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/plugins/recommended-plugins-for-wordpress/' rel='bookmark' title='Permanent Link: Recommended Plugins for WordPress'>Recommended Plugins for WordPress</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=uLTFI1c2uHc:9exOUjZv_Cw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=uLTFI1c2uHc:9exOUjZv_Cw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=uLTFI1c2uHc:9exOUjZv_Cw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=uLTFI1c2uHc:9exOUjZv_Cw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=uLTFI1c2uHc:9exOUjZv_Cw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=uLTFI1c2uHc:9exOUjZv_Cw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=uLTFI1c2uHc:9exOUjZv_Cw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=uLTFI1c2uHc:9exOUjZv_Cw:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/uLTFI1c2uHc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/manage-your-ads-in-wordpress-with-oio-publisher-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/plugins/manage-your-ads-in-wordpress-with-oio-publisher-review/</feedburner:origLink></item>
		<item>
		<title>Which Blogging Platform Should You Use? (Infographic)</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/pXvpSTmQHaU/</link>
		<comments>http://www.wpbeginner.com/beginners-guide/which-blogging-platform-should-you-use/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 05:09:44 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Beginners Guide]]></category>
		<category><![CDATA[best blogging platform for you?]]></category>
		<category><![CDATA[blogging platforms]]></category>
		<category><![CDATA[what is the best blogging platform]]></category>
		<category><![CDATA[which blogging platform should you use]]></category>
		<category><![CDATA[which blogging platform should you use infographic]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress is the best blogging platform]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1364</guid>
		<description><![CDATA[When starting a blog, this question comes to the mind of every blogger. Which blogging platform is the best? Which one should they use? If you are on WPBeginner, you will see us recommending everyone to use <a href="http://www.wordpress.org/" target="_blank" rel="nofollow">Self Hosted WordPress.org platform</a>. But many users think that our views are biased, therefore we asked Darren Rowse from <a href="http://www.problogger.net/" target="_blank">Problogger</a> for his permission to use the data from the poll he ran on his site.<p><a href="http://www.wpbeginner.com/beginners-guide/which-blogging-platform-should-you-use/">Which Blogging Platform Should You Use? (Infographic)</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/beginners-guide/self-hosted-wordpress-org-vs-free-wordpress-com-infograph/' rel='bookmark' title='Permanent Link: Self Hosted WordPress.org vs. Free WordPress.com [Infograph]'>Self Hosted WordPress.org vs. Free WordPress.com [Infograph]</a></li>
<li><a href='http://www.wpbeginner.com/beginners-guide/ultimate-guide-to-upgrade-wordpress-for-beginners-infograph/' rel='bookmark' title='Permanent Link: Ultimate Guide to Upgrade WordPress for Beginners [Infograph]'>Ultimate Guide to Upgrade WordPress for Beginners [Infograph]</a></li>
<li><a href='http://www.wpbeginner.com/news/wordpress-2-8-5-hardening-release/' rel='bookmark' title='Permanent Link: WordPress 2.8.5 &#8211; Hardening Release'>WordPress 2.8.5 &#8211; Hardening Release</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When starting a blog, this question comes to the mind of every blogger. Which blogging platform is the best? Which one should they use? If you are on WPBeginner, you will see us recommending everyone to use <a href="http://www.wordpress.org/" target="_blank" rel="nofollow">Self Hosted WordPress.org platform</a>. But many users think that our views are biased, therefore we asked Darren Rowse from <a href="http://www.problogger.net/" target="_blank">Problogger</a> for his permission to use the data from the poll he ran on his site.</p>
<p>We took the results from Darren&#8217;s Poll about <a href="http://www.problogger.net/archives/2009/05/11/what-blog-platform-do-you-use-most/" target="_blank">What Blog Platform Do You Use?</a> and displayed it in our infographic to present a more convincing argument. As of now, there are a total of 3476 bloggers who participated in this poll, and you can see the results in our Infograph.</p>
<p><a href="http://www.wpbeginner.com/beginners-guide/which-blogging-platform-should-you-use/?display=wide"><img src="http://www.wpbeginner.com/infographs/whichplatformmini.gif" alt="Which Blogging Platform Should You Use? (Infographic)" /></a></p>
<p>WordPress.org got the majority of the votes and WordPress.com was on third place in user choice. If you need help distinguishing between the two platforms see our infograph about <a href="http://www.wpbeginner.com/beginners-guide/self-hosted-wordpress-org-vs-free-wordpress-com-infograph/">Self Hosted WordPress vs. Free WordPress.com</a>.</p>
<p>Our pick in the Best Platform is ofcourse WordPress.org, and we have mentioned a few reasons why you should use WordPress. But if the reasons in the infographic is not enough for you, then you should check out our fully detailed post about <a href="http://www.wpbeginner.com/why-you-should-use-wordpress/">Why You Should Use WordPress</a>.</p>
<p>Feel free to post a comment below about which platform do you use, and why you use it.</p>
<p>Once again, all thanks goes to <a href="http://twitter.com/problogger">Darren Rowse</a> of Problogger for letting us use his data to create this interactive graphic for our users.</p>
<p><a href="http://www.wpbeginner.com/beginners-guide/which-blogging-platform-should-you-use/">Which Blogging Platform Should You Use? (Infographic)</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/beginners-guide/self-hosted-wordpress-org-vs-free-wordpress-com-infograph/' rel='bookmark' title='Permanent Link: Self Hosted WordPress.org vs. Free WordPress.com [Infograph]'>Self Hosted WordPress.org vs. Free WordPress.com [Infograph]</a></li>
<li><a href='http://www.wpbeginner.com/beginners-guide/ultimate-guide-to-upgrade-wordpress-for-beginners-infograph/' rel='bookmark' title='Permanent Link: Ultimate Guide to Upgrade WordPress for Beginners [Infograph]'>Ultimate Guide to Upgrade WordPress for Beginners [Infograph]</a></li>
<li><a href='http://www.wpbeginner.com/news/wordpress-2-8-5-hardening-release/' rel='bookmark' title='Permanent Link: WordPress 2.8.5 &#8211; Hardening Release'>WordPress 2.8.5 &#8211; Hardening Release</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=pXvpSTmQHaU:fzkmPgiUfPo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=pXvpSTmQHaU:fzkmPgiUfPo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=pXvpSTmQHaU:fzkmPgiUfPo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=pXvpSTmQHaU:fzkmPgiUfPo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=pXvpSTmQHaU:fzkmPgiUfPo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=pXvpSTmQHaU:fzkmPgiUfPo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=pXvpSTmQHaU:fzkmPgiUfPo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=pXvpSTmQHaU:fzkmPgiUfPo:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/pXvpSTmQHaU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/beginners-guide/which-blogging-platform-should-you-use/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/beginners-guide/which-blogging-platform-should-you-use/</feedburner:origLink></item>
		<item>
		<title>Guerrilla v2: Free WordPress Theme by Giant Themes</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/clZNssKtPvg/</link>
		<comments>http://www.wpbeginner.com/free-wordpress-themes/guerrilla-v2-free-wordpress-theme-by-giant-themes/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:54:58 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>
		<category><![CDATA[blog style wordpress themes]]></category>
		<category><![CDATA[free themes for wordpress]]></category>
		<category><![CDATA[free wordpress theme]]></category>
		<category><![CDATA[giant themes]]></category>
		<category><![CDATA[guerrilla v2 free theme for wordpress]]></category>
		<category><![CDATA[guerrilla wordpress theme]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1359</guid>
		<description><![CDATA[Mike Smith of <a href="http://www.wpbeginner.com/refer/giantthemes" target="_blank" rel="nofollow">Giant Themes</a> have submitted his free theme to be published on WPBeginner. Guerrilla v2 is a simple WordPress blog style theme with custom back-end features to make your theme-editing easier.<p><a href="http://www.wpbeginner.com/free-wordpress-themes/guerrilla-v2-free-wordpress-theme-by-giant-themes/">Guerrilla v2: Free WordPress Theme by Giant Themes</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/youare-wordpress-theme-for-free/' rel='bookmark' title='Permanent Link: YouAre WordPress Theme for Free'>YouAre WordPress Theme for Free</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/madblogger-free-wordpress-theme-by-wordpress-madness/' rel='bookmark' title='Permanent Link: MadBlogger Free WordPress Theme by WordPress Madness'>MadBlogger Free WordPress Theme by WordPress Madness</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/15-great-looking-free-portfolio-themes-for-wordpress/' rel='bookmark' title='Permanent Link: 15 Great Looking Free Portfolio Themes for WordPress'>15 Great Looking Free Portfolio Themes for WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Mike Smith of <a href="http://www.wpbeginner.com/refer/giantthemes" target="_blank" rel="nofollow">Giant Themes</a> have submitted his free theme to be published on WPBeginner. Guerrilla v2 is a simple WordPress blog style theme with custom back-end features to make your theme-editing easier.</p>
<p><a href="http://www.giantthemes.com/demo/guerrilla.html" target="_blank" rel="nofollow"><img src="http://www.wpbeginner.com/blogpostsimages/freewpthemes/guerrillav2.gif" alt="Guerrilla v2 Theme for WordPress" style="padding: 5px; border: 1px solid #ddd;" /></a></p>
<p>(Click on the Image for Live Demo)</p>
<h4>Features</h4>
<ol>
<li>Logo changer: add your logo url &#038; the size of the logo</li>
<li>Stylesheet Changer: the three styles are built into a drop down for you</li>
<li>Google analytics: add your code into the box and it’s automatically added into your site</li>
<li>Timthumb options: Activate timthumb’s image resizer and also choose the width/height</li>
<li>RSS Feed options: add your feed url and feedreader name to get the rss box to show up and allow email sign ups</li>
<li>Twitter options: Add your twitter name, choose how many tweets to show &#038; choose the twitter section title</li>
<li>Advertisements: 300×250 in the sidebar, 300×250 on single post pages, 468×60 on the single post pages (and under the first post on every page), 125×125 ad block in the sidebar</li>
</ol>
<h4><a href="http://www.giantthemes.com/guerrilla-v2-is-ready-for-download/" target="_blank" rel="nofollow">Download Now</a></h4>
<p>Note to Designers: You can also submit your free WordPress themes for us to review and share with WPBeginner&#8217;s audience. Use our <a href="http://www.wpbeginner.com/make-a-suggestion/">Make a Suggestion</a> form.</p>
<p><a href="http://www.wpbeginner.com/free-wordpress-themes/guerrilla-v2-free-wordpress-theme-by-giant-themes/">Guerrilla v2: Free WordPress Theme by Giant Themes</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/youare-wordpress-theme-for-free/' rel='bookmark' title='Permanent Link: YouAre WordPress Theme for Free'>YouAre WordPress Theme for Free</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/madblogger-free-wordpress-theme-by-wordpress-madness/' rel='bookmark' title='Permanent Link: MadBlogger Free WordPress Theme by WordPress Madness'>MadBlogger Free WordPress Theme by WordPress Madness</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/15-great-looking-free-portfolio-themes-for-wordpress/' rel='bookmark' title='Permanent Link: 15 Great Looking Free Portfolio Themes for WordPress'>15 Great Looking Free Portfolio Themes for WordPress</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=clZNssKtPvg:Z5cuk0hHNmc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=clZNssKtPvg:Z5cuk0hHNmc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=clZNssKtPvg:Z5cuk0hHNmc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=clZNssKtPvg:Z5cuk0hHNmc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=clZNssKtPvg:Z5cuk0hHNmc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=clZNssKtPvg:Z5cuk0hHNmc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=clZNssKtPvg:Z5cuk0hHNmc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=clZNssKtPvg:Z5cuk0hHNmc:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/clZNssKtPvg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/free-wordpress-themes/guerrilla-v2-free-wordpress-theme-by-giant-themes/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/free-wordpress-themes/guerrilla-v2-free-wordpress-theme-by-giant-themes/</feedburner:origLink></item>
		<item>
		<title>How to Display Custom Fields Outside The Loop in WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/8cjpVh9vAxw/</link>
		<comments>http://www.wpbeginner.com/wp-themes/how-to-display-custom-fields-outside-the-loop-in-wordpress/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 18:17:23 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[display custom fields from a specific post outside the loop]]></category>
		<category><![CDATA[Display custom fields outside the loop]]></category>
		<category><![CDATA[display different footer on each post]]></category>
		<category><![CDATA[display different sidebar on each post]]></category>
		<category><![CDATA[how to display custom fields outside the loop]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1347</guid>
		<description><![CDATA[In this article we will show you how you can display custom fields outside the loop. This tutorial will allow you to expand the possibilities of what you can do with WordPress.<p><a href="http://www.wpbeginner.com/wp-themes/how-to-display-custom-fields-outside-the-loop-in-wordpress/">How to Display Custom Fields Outside The Loop in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-add-a-digg-button-in-your-wordpress-using-custom-fields/' rel='bookmark' title='Permanent Link: How to Add a Digg Button in your WordPress using Custom Fields'>How to Add a Digg Button in your WordPress using Custom Fields</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/embed-custom-css-in-your-single-posts-with-custom-fields/' rel='bookmark' title='Permanent Link: Embed Custom CSS in Your Single Posts with Custom Fields'>Embed Custom CSS in Your Single Posts with Custom Fields</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-rewrite-guest-author-name-with-custom-fields-in-wordpress/' rel='bookmark' title='Permanent Link: How to Rewrite Guest Author Name with Custom Fields in WordPress'>How to Rewrite Guest Author Name with Custom Fields in WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There will be times that you need to display post-specific content for example a <a href="http://www.wpbeginner.com/wp-themes/display-different-sidebar-for-each-post-and-page-for-wordpress/">different sidebar for a specific post</a>. Usually post specific contents are added via a custom field which can only be displayed inside a post loop. In this article we will show you how you can display custom fields outside the loop. This tutorial will allow you to expand the possibilities of what you can do with WordPress.</p>
<p>The code will look like this:</p>
<blockquote><p>&lt;?php<br />
global $wp_query;<br />
$postid = $wp_query-&gt;post-&gt;ID;<br />
echo get_post_meta($postid, &#39;Your-Custom-Field&#39;, true);<br />
wp_reset_query();<br />
?&gt;</p></blockquote>
<p>You will need to make sure that you change the part where it says &#8220;Your-Custom-Field&#8221;.</p>
<p>This code is just the basic code. You can play around with it and use all the <a href="http://codex.wordpress.org/Template_Tags/query_posts" target="_blank" rel="nofollow">query_post arguments</a> to fit your needs. You can even display another post&#8217;s custom fields on a single page of a different post.</p>
<p>In this (<a href="http://www.uzzz.net/testimonials/lindsey-nobles/">Example</a>) at Uzzz, we are displaying the custom fields of a specific portfolio post, into the single post of a related testimonial post.</p>
<p>This snippet is very useful for theme developers. If you have any questions, feel free to ask in the comment or via email.</p>
<p><a href="http://www.wpbeginner.com/wp-themes/how-to-display-custom-fields-outside-the-loop-in-wordpress/">How to Display Custom Fields Outside The Loop in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-add-a-digg-button-in-your-wordpress-using-custom-fields/' rel='bookmark' title='Permanent Link: How to Add a Digg Button in your WordPress using Custom Fields'>How to Add a Digg Button in your WordPress using Custom Fields</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/embed-custom-css-in-your-single-posts-with-custom-fields/' rel='bookmark' title='Permanent Link: Embed Custom CSS in Your Single Posts with Custom Fields'>Embed Custom CSS in Your Single Posts with Custom Fields</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-rewrite-guest-author-name-with-custom-fields-in-wordpress/' rel='bookmark' title='Permanent Link: How to Rewrite Guest Author Name with Custom Fields in WordPress'>How to Rewrite Guest Author Name with Custom Fields in WordPress</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=8cjpVh9vAxw:GIWrGIXlCcw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=8cjpVh9vAxw:GIWrGIXlCcw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=8cjpVh9vAxw:GIWrGIXlCcw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=8cjpVh9vAxw:GIWrGIXlCcw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=8cjpVh9vAxw:GIWrGIXlCcw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=8cjpVh9vAxw:GIWrGIXlCcw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=8cjpVh9vAxw:GIWrGIXlCcw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=8cjpVh9vAxw:GIWrGIXlCcw:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/8cjpVh9vAxw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-themes/how-to-display-custom-fields-outside-the-loop-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-themes/how-to-display-custom-fields-outside-the-loop-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>Most Wanted Twitter Hacks and Plugins for WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/7XA5-XDyx-I/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/most-wanted-twitter-hacks-and-plugins-for-wordpress/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 21:23:07 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[display recent tweets from multiple accounts]]></category>
		<category><![CDATA[display recent tweets in WordPress]]></category>
		<category><![CDATA[display recent tweets via jquery]]></category>
		<category><![CDATA[display twitter follower count as text]]></category>
		<category><![CDATA[display twitter friends]]></category>
		<category><![CDATA[how to add a retweet button]]></category>
		<category><![CDATA[how to add a tweet this button]]></category>
		<category><![CDATA[maximize your twitter benefits in WordPress]]></category>
		<category><![CDATA[most wanted twitter hacks and plugins for WordPress]]></category>
		<category><![CDATA[most wanted twitter hacks for WordPress]]></category>
		<category><![CDATA[most wanted twitter plugins for WordPress]]></category>
		<category><![CDATA[seaofclouds]]></category>
		<category><![CDATA[twitter effect for WordPress blogs]]></category>
		<category><![CDATA[twitter hacks for wordpress]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1331</guid>
		<description><![CDATA[Twitter is an extremely powerful marketing and promotion tool that no active blogger can ignore. Twitter has the power to make your articles go viral, and the "Twitter Effect" is something that most bloggers want. In this article, we will share some of the most wanted and extremely useful twitter hacks and plugins that will allow you to maximize your benefits from twitter.<p><a href="http://www.wpbeginner.com/wp-tutorials/most-wanted-twitter-hacks-and-plugins-for-wordpress/">Most Wanted Twitter Hacks and Plugins for WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/plugins/how-to-auto-publish-your-twitter-tweets-as-wordpress-posts/' rel='bookmark' title='Permanent Link: How to Auto Publish Your Twitter Tweets as WordPress Posts'>How to Auto Publish Your Twitter Tweets as WordPress Posts</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/10-most-wanted-category-hacks-and-plugins-for-wordpress/' rel='bookmark' title='Permanent Link: 10 Most Wanted Category Hacks and Plugins for WordPress'>10 Most Wanted Category Hacks and Plugins for WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/displaying-the-total-number-of-twitter-followers-as-text-on-wordpress/' rel='bookmark' title='Permanent Link: Displaying the Total Number of Twitter Followers as Text on WordPress'>Displaying the Total Number of Twitter Followers as Text on WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Twitter has grown exponentially over the past year, and it is one of the fastest growing social networks at the moment. It is an extremely powerful marketing and promotion tool that no active blogger can ignore. Twitter has the power to make your articles go viral, and the &#8220;Twitter Effect&#8221; is something that most bloggers want. In this article, we will share some of the most wanted and extremely useful twitter hacks and plugins that will allow you to maximize your benefits from twitter.</p>
<p>Note: These hacks are for all user levels. Some knowledge of PHP / HTML will be required for some of the hacks. We will try to provide alternative plugins for each hack that we share to make it easy for beginners.</p>
<h2>Display a Retweet Button with a Counter</h2>
<p><img src="http://www.wpbeginner.com/killerhacks/retweet.gif" alt="Display a Retweet Button wit ha Counter" /></p>
<p>If you have visited an active blog, then you have seen a retweet button on their site. Majority of the time, it will be from a service known as Tweetmeme. </p>
<h3>Snippet</h3>
<p>One way to get this button on your site is by placing the following code in your <em>single.php</em> template (At a location where you want to put it).</p>
<blockquote><p>&lt;script type=&quot;text/javascript&quot;&gt;<br />
tweetmeme_source = &#39;wpbeginner&#39;;<br />
&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;http://tweetmeme.com/i/scripts/button.js&quot;&gt; &lt;/script&gt;</p></blockquote>
<p>The above code will output a big button like you see on the left hand side of this post. Make sure that you change the source to your twitter account. It is essential that you do this because it will help you get more exposure.</p>
<p>If you do not like the big retweet button, you can display a compact twitter button, which you can see at the end of this post. Simply paste the following code:</p>
<blockquote><p>&lt;script type=&#39;text/javascript&#39;&gt;<br />
tweetmeme_style = &quot;compact&quot;;<br />
tweetmeme_source = &#39;wpbeginner&#39;;<br />
&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;http://tweetmeme.com/i/scripts/button.js&quot;&gt; &lt;/script&gt;</p></blockquote>
<p>Note: Don&#8217;t forget to change the source from wpbeginner to your username in the above code.</p>
<h3>Plugin</h3>
<p>Tweetmeme also offers a plugin that you can <a href="http://wordpress.org/extend/plugins/tweetmeme/" target="_blank" rel="nofollow">download</a>. The plugin will allow you display these buttons within your posts. You will have an option to pick: </p>
<ul>
<li>The display size (compact or large)</li>
<li>Pick the Source of this tweet (Your Username)</li>
<li>Where you want to place the button in the post</li>
</ul>
<h2>Display Twitter Follower Count as Text</h2>
<p>There are users who absolutely hate buttons like Feedburner buttons or Twittercounter buttons. Are you one of them? Do you want to display your twitter count as text, so it blends in to your new custom design? Well then this hack is just for you.</p>
<h3>Snippet</h3>
<p>Paste the following code any where you want to display the count:</p>
<blockquote><p>&lt;?php<br />
$tw = get_option(&quot;twitterfollowerscount&quot;);<br />
if ($tw[&#39;lastcheck&#39;] &lt; ( mktime() &#8211; 3600 ) )<br />
{<br />
$xml=file_get_contents(&#39;http://twitter.com/users/show.xml?screen_name=wpbeginner&#39;);<br />
if (preg_match(&#39;/followers_count&gt;(.*)&lt;/&#39;,$xml,$match)!=0) {<br />
$tw[&#39;count&#39;] = $match[1];<br />
}<br />
$tw[&#39;lastcheck&#39;] = mktime();<br />
update_option(&quot;twitterfollowerscount&quot;,$tw);<br />
}<br />
echo $tw[&#39;count&#39;];<br />
?&gt; </p></blockquote>
<p>Make sure to replace <strong>wpbeginner</strong> with your twitter name.</p>
<p>Explanation of this code: This code will open the XML file for the username that you specify. It will look for the node followers_count, and then it will display that count on your site. Best part about this code is that it will display cached results, so it will keep the load time to the minimum.</p>
<p>This code was written by <a href="http://www.rarst.net/" target="_blank" rel="nofollow">Rarst</a> (<a href="http://twitter.com/Rarst/" target="_blank" rel="nofollow">@rarst</a>)</p>
<h3>Plugin</h3>
<p>For those users who do not feel comfortable modifying the theme files, you can use a plugin called &#8220;<a href="http://wordpress.org/extend/plugins/subscribers-text-counter/" target="_blank"><strong>Subscribers Text Counter</strong></a>&#8220;. This plugin will let you display the follower count in widgets, or on posts/pages. This plugin also utilizes the caching system, so it is a good solution.</p>
<h2>Display Your Recent Tweets</h2>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpandtwitter/recenttweet.gif" alt="Display Your Recent Tweets" /></p>
<p>It is great to give a community sense to a site by displaying recent tweets in the sidebar or on a separate page. Many blogs often display their most recent tweets in their site. This section will show you various different ways to display your recent Tweets.</p>
<h3>Snippet</h3>
<p>There are numerous codes on the web that will let you display recent tweets from your twitter account without a plugin. Almost all of those codes have some shortfall. Below we will share one of the snippets that will allow you to display your recent tweets with caching.</p>
<p>Paste the codes below, wherever you like to display the recent tweets:</p>
<p><a href="http://wpbeginner.com/blogpostsimages/wpandtwitter/singletweet.txt">Download the Code File</a></p>
<p>You must change the username from &#8220;wpbeginner&#8221; to your username. You can find this towards the very end of this code where it reads <strong>parse_cache_feed(wpbeginner, 1)</strong>. The number in front represents the number of tweets that will be displayed. You can change the number to the amount that you like, but we recommend that you keep it to a minimum because this code is utilizing the Search API. </p>
<p><strong>Known Issues:</strong> This snippet is using the Search API, so if your account is removed from twitter search (ofcourse by twitter), then this snippet will not display any results. Also the search API only displays tweets that were posted within the last 7 days.</p>
<p>For those users who are flagged from the search by twitter, we recommend that you contact them and ask why that is the case. In the meantime, you may use a JavaScript solution that will display your tweets from your feed.</p>
<p>Place the following code in your <em>footer.php</em> right above &lt;/body&gt; tag.</p>
<blockquote><p>&lt;script type=&quot;text/javascript&quot; src=&quot;http://twitter.com/javascripts/blogger.js&quot;&gt;&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;http://twitter.com/statuses/user_timeline/wpbeginner.json?callback=twitterCallback2&amp;count=5&quot;&gt;&lt;/script&gt;</p></blockquote>
<p>Remember to change the username from wpbeginner to your username. Also you can change the count from 5 to whatever you like.</p>
<p>Then add the following HTML tags any where you want to display the recent tweets.</p>
<blockquote><p>&lt;div id=&quot;twitter_div&quot;&gt;&lt;ul id=&quot;twitter_update_list&quot;&gt;&lt;li&gt;&amp;nbsp;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</p></blockquote>
<p>You would need to edit the CSS file for proper styling.</p>
<p><strong>Known Issues:</strong> This plugin does not have caching, so the scripts will be loaded every time the page loads. </p>
<p>Source: <a href="http://twitter.com/widgets/html_widget" target="_blank" rel="nofollow">Twitter</a></p>
<h3>Plugin</h3>
<p>If you are one of the users who do not want to modify their theme files, there is an alternative plugin that you can use.</p>
<p><a href="http://wordpress.org/extend/plugins/twitter-tools/" target="_blank" rel="nofollow">Alex King&#8217;s Twitter Tool</a></p>
<p>This plugin will let you display recent tweets from your account. It will store your tweets in the database to limit the API queries. Tweets are archived every 10 minutes.</p>
<p>Note: there are way too many plugins that do this, to list them all here.</p>
<h2>Display Recent Tweets from Multiple Accounts</h2>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpandtwitter/multiusertweet.gif" alt="Display Recent Tweets from Multiple Accounts" /></p>
<p>Display recent tweets from Multiple accounts come can be useful to increase community interaction when you have a multi-author blog. You can spend hours on the web trying to find a good solution, but below are two best solutions that we found.</p>
<h4><a href="http://tweet.seaofclouds.com/" target="_blank" rel="nofollow">Tweet!</a></h4>
<p>Tweet is an unobtrusive JavaScript plugin for jQuery that lets you put twitter on your website. This is a great snippet that loads the tweets using JSON. For the download and directions, you should visit the <a href="http://tweet.seaofclouds.com/" target="_blank" rel="nofollow">official page</a>.</p>
<p>Known Issues: This script utilizes the Search API which has it&#8217;s limits. Your search query has a character limit set to 140 characters. So in short, you will be able to get a maximum of 6 &#8211; 8 users depending on the length of their username.</p>
<h4><a href="http://wordpress.org/extend/plugins/tweet-blender/" target="_blank">Tweet Blender</a></h4>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpandtwitter/tweetblender.gif" alt="Tweet Blender Screenshot" /></p>
<p>Tweet Blender plugin allows you to display multiple user&#8217;s tweet. This plugin actually displays the tweets from user&#8217;s feeds, so it does not rely on the Search API. But the more names you put, the longer it will take to load.</p>
<p><strong>Known Issues:</strong> None that we know of.</p>
<h2>Integrate Twitter Conversations About Your Posts</h2>
<p>People are talking about your posts, and their convesation is not limited to the comments in your post. A lot of that conversation is happening on Twitter. Why not bring this conversation right back to your blog? </p>
<p><a href="http://yoast.com/wordpress/tweetbacks/" target="_blank" rel="nofollow">Tweetback</a> plugin imports those tweets about your posts as comments. You can display them in between the other comments on your blog, or display them separately.</p>
<p>You can also add widgets to your site that shows the &#8220;Most Tweeted Posts&#8221; and &#8220;Recently Tweeted Posts&#8221; with the use of a plugin called <a href="http://wordpress.org/extend/plugins/tweet-stats/" target="_blank" rel="nofollow">Tweet Stats </a>. You must have the plugin (<a href="http://yoast.com/wordpress/tweetbacks/" target="_blank" rel="nofollow">Tweetback</a> that we mentioned above in order for this plugin to work).</p>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpandtwitter/tweetstat.gif" alt="Tweet Stat Widget Screenshot" /></p>
<h2>Take your Blog communication to Twitter</h2>
<p>Above we showed you how you can integrate twitter conversations about your blog posts into your comments. In this trick, you will give the user an ability to post the comment on your site, and then also have their conversation on twitter. </p>
<h4><a href="http://www.jonbishop.com/downloads/wordpress-plugins/commentwitter-plugin-page/" target="_blank" rel="nofollow">Commentwitter</a></h4>
<p>This plugin will add a twitter login area below the comments, so users have an option to post their comment to twitter.</p>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpandtwitter/commentwitter.gif" alt="Post blog comments to Twitter" /></p>
<h2>Display a Special Welcome Message for Your Twitter Users</h2>
<p><a href="http://www.twitter.com/wpbeginner" target="_blank" rel="nofollow"><img src="http://www.wpbeginner.com/blogpostsimages/wpandtwitter/welcomemessage.gif" alt="Special Welcome Message for Your Twitter Users" /></a></p>
<p>There are some sites that display a special welcome message to their twitter users. This increase their chances of getting more followers and more retweets for that post.</p>
<p>Simply place the following code in your <em>single.php</em> file where you want the welcome message to be displayed.</p>
<blockquote><p>&lt;?php<br />
if (strpos(&quot;twitter.com&quot;,$_SERVER[HTTP_REFERER])==0) {<br />
    echo &quot;Welcome, Twitter User! If you enjoy this post, don&#39;t hesitate to retweet it to your followers&quot;;<br />
}<br />
?&gt;</p></blockquote>
<h2>Display Your Twitter Friends on Your Site</h2>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpandtwitter/twitterfriends.gif" alt="Display Your Twitter Friends" /></p>
<p>You have seen the Facebook Fan page widget, Google Connect widget, and Mybloglog widget. All three of these display the friends/fans pictures. You can do that with twitter as well.</p>
<h4><a href="http://wordpress.org/extend/plugins/twitter-friends-widget/" target="_blank" rel="nofollow">Twitter Friends Widget</a></h4>
<p>This plugin displays your Twitter friends/followers in your sidebar in the same way that they appear on your Twitter homepage.</p>
<h2>Twitter Profile Field in Comments</h2>
<p><img src="http://www.wpbeginner.com/mostwanted/twittercomment.gif" alt="Twitter Field in Comments" /></p>
<p>Top tech sites are already doing this. If you go to Mashable or Tech Crunch, then you will see that they have an additional field below the Website URL for Twitter profile. There is a plugin that will let you do that fairly easily.</p>
<h4><a href="http://wordpress.org/extend/plugins/twitterlink-comments/" target="_blank" rel="nofollow">Twitter Link Comments</a></h4>
<p>This plugin will add an extra field to your comment form so a user can add their Twitter username. A user configured &#8216;follow me&#8217; link is then displayed along with their details on all their comments. The extra field and &#8216;follow me&#8217; link can be configured using the settings page without ever needing to modify any template files. (unless you want to)</p>
<p>While these are some of the Most Wanted Twitter Hacks and Plugins, this list is definitely not the end of what you can do with twitter and WordPress. Infact there are 662 Results in the WordPress Plugin Directory when one runs the query for <a href="http://wordpress.org/extend/plugins/search.php?q=twitter&#038;sort=" target="_blank" rel="nofollow">Twitter</a>. There is also a list that we used as our source <a href="http://skyje.com/2009/05/107-wordpress-twitter-plugins/" target="_blank" rel="nofollow">107 Twitter Plugins for WordPress</a>.</p>
<p>If you liked this post, then please retweet it, so others can also take advantage of this useful article. Also don&#8217;t forget to <a href="http://twitter.com/wpbeginner" target="_blank" rel="nofollow">follow us on twitter</a>.</p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/most-wanted-twitter-hacks-and-plugins-for-wordpress/">Most Wanted Twitter Hacks and Plugins for WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/plugins/how-to-auto-publish-your-twitter-tweets-as-wordpress-posts/' rel='bookmark' title='Permanent Link: How to Auto Publish Your Twitter Tweets as WordPress Posts'>How to Auto Publish Your Twitter Tweets as WordPress Posts</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/10-most-wanted-category-hacks-and-plugins-for-wordpress/' rel='bookmark' title='Permanent Link: 10 Most Wanted Category Hacks and Plugins for WordPress'>10 Most Wanted Category Hacks and Plugins for WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/displaying-the-total-number-of-twitter-followers-as-text-on-wordpress/' rel='bookmark' title='Permanent Link: Displaying the Total Number of Twitter Followers as Text on WordPress'>Displaying the Total Number of Twitter Followers as Text on WordPress</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=7XA5-XDyx-I:F_cH6Fxzk2M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=7XA5-XDyx-I:F_cH6Fxzk2M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=7XA5-XDyx-I:F_cH6Fxzk2M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=7XA5-XDyx-I:F_cH6Fxzk2M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=7XA5-XDyx-I:F_cH6Fxzk2M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=7XA5-XDyx-I:F_cH6Fxzk2M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=7XA5-XDyx-I:F_cH6Fxzk2M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=7XA5-XDyx-I:F_cH6Fxzk2M:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/7XA5-XDyx-I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/most-wanted-twitter-hacks-and-plugins-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/most-wanted-twitter-hacks-and-plugins-for-wordpress/</feedburner:origLink></item>
		<item>
		<title>An Automated Way of Taking Website Screenshot in WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/y7uzRRbvQfk/</link>
		<comments>http://www.wpbeginner.com/plugins/an-automated-way-of-taking-website-screenshot-in-wordpress/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 20:48:49 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[automated website screenshot in WordPress]]></category>
		<category><![CDATA[automatic website screenshot in wordpress]]></category>
		<category><![CDATA[binarymoon]]></category>
		<category><![CDATA[bm shots plugin wordpress]]></category>
		<category><![CDATA[create website screenshot in wordpress]]></category>
		<category><![CDATA[screenshot wordpress]]></category>
		<category><![CDATA[wp screenshot plugin]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1326</guid>
		<description><![CDATA[We were visiting one of our favorite sites (<a href="http://www.binarymoon.co.uk/2010/02/automated-take-screenshots-website-free/" rel="nofollow" target="_blank">Binary Moon</a>) and noticed this extremely cool service that WordPress has. Most people do not even know that WordPress has an option which lets you take screenshots of any website. <p><a href="http://www.wpbeginner.com/plugins/an-automated-way-of-taking-website-screenshot-in-wordpress/">An Automated Way of Taking Website Screenshot in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/plugins/manage-your-ads-in-wordpress-with-oio-publisher-review/' rel='bookmark' title='Permanent Link: Manage Your Ads in WordPress with OIO Publisher (Review)'>Manage Your Ads in WordPress with OIO Publisher (Review)</a></li>
<li><a href='http://www.wpbeginner.com/showcase/best-practices-of-contact-form-page-designs-in-wordpress/' rel='bookmark' title='Permanent Link: Best Practices of Contact Form-Page Designs in WordPress'>Best Practices of Contact Form-Page Designs in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/news/most-notable-features-in-wordpress-2-9/' rel='bookmark' title='Permanent Link: Most Notable Features in WordPress 2.9'>Most Notable Features in WordPress 2.9</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We were visiting one of our favorite sites (<a href="http://www.binarymoon.co.uk/2010/02/automated-take-screenshots-website-free/" rel="nofollow" target="_blank">Binary Moon</a>) and noticed this extremely cool service that WordPress has. Most people do not even know that WordPress has an option which lets you take screenshots of any website. </p>
<p>Ben at Binary Moon noticed that WordPress was using this feature of their <a href="http://wordpress.org/extend/themes/commercial/" target="_blank" rel="nofollow">Commercial Themes Page</a>. He decided to contact Matt Mullenweg and asked his permission to implement this feature on his site. Then he kindly wrote a plugin that can be used by any WordPress user to implement this feature on their site. </p>
<p><strong>Example:</strong> </p>
<blockquote><p>http://s.wordpress.com/mshots/v1/http%3A%2F%2Fwpbeginner.com%2F?w=520</p></blockquote>
<p><img src="http://s.wordpress.com/mshots/v1/http%3A%2F%2Fwpbeginner.com%2F?w=520" alt="WPBeginner's Automated Screenshot from WordPress" /></p>
<p>You can generate a dynamic screenshot for each site and specify the width as well. </p>
<p>Ben is using this on his site called <a href="http://wpvote.com/" target="_blank" rel="nofollow">WP Vote</a>. We think this concept would be great for a gallery type site. </p>
<h4><a href="http://www.binarymoon.co.uk/projects/bm-shots-automated-screenshots-website/" target="_blank" rel="nofollow">Download BM Shots Plugin</a></h4>
<p>Usage is explained on the plugin page above, but if you have any further questions feel free to ask it here.</p>
<p><a href="http://www.wpbeginner.com/plugins/an-automated-way-of-taking-website-screenshot-in-wordpress/">An Automated Way of Taking Website Screenshot in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/plugins/manage-your-ads-in-wordpress-with-oio-publisher-review/' rel='bookmark' title='Permanent Link: Manage Your Ads in WordPress with OIO Publisher (Review)'>Manage Your Ads in WordPress with OIO Publisher (Review)</a></li>
<li><a href='http://www.wpbeginner.com/showcase/best-practices-of-contact-form-page-designs-in-wordpress/' rel='bookmark' title='Permanent Link: Best Practices of Contact Form-Page Designs in WordPress'>Best Practices of Contact Form-Page Designs in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/news/most-notable-features-in-wordpress-2-9/' rel='bookmark' title='Permanent Link: Most Notable Features in WordPress 2.9'>Most Notable Features in WordPress 2.9</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=y7uzRRbvQfk:2yfsdLfpX0I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=y7uzRRbvQfk:2yfsdLfpX0I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=y7uzRRbvQfk:2yfsdLfpX0I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=y7uzRRbvQfk:2yfsdLfpX0I:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=y7uzRRbvQfk:2yfsdLfpX0I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=y7uzRRbvQfk:2yfsdLfpX0I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=y7uzRRbvQfk:2yfsdLfpX0I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=y7uzRRbvQfk:2yfsdLfpX0I:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/y7uzRRbvQfk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/an-automated-way-of-taking-website-screenshot-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/plugins/an-automated-way-of-taking-website-screenshot-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>How to Install and Setup WP Super Cache for Beginners</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/JEtVRvdI9BM/</link>
		<comments>http://www.wpbeginner.com/beginners-guide/how-to-install-and-setup-wp-super-cache-for-beginners/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 15:27:50 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Beginners Guide]]></category>
		<category><![CDATA[how to configure wp super cache plugin for beginners]]></category>
		<category><![CDATA[how to enable wp super cache plugin]]></category>
		<category><![CDATA[how to install wp super cache plugin]]></category>
		<category><![CDATA[how to properly install wp super cache plugin]]></category>
		<category><![CDATA[how to setup wp super cache plugin for beginners]]></category>
		<category><![CDATA[installing wp super cache for beginners]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1320</guid>
		<description><![CDATA[<a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a> is one of the must have plugins for every WordPress site. A lot of our users asked us to do a tutorial that shows how to setup WP Super Cache plugin step by step. Because we have this plugin included in our <a href="http://www.wpbeginner.com/plugins/recommended-plugins-for-wordpress/">Recommended WordPress Plugins</a> list, we think that it is necessary for us to show everyone how to take advantage of this extremely useful plugin. <p><a href="http://www.wpbeginner.com/beginners-guide/how-to-install-and-setup-wp-super-cache-for-beginners/">How to Install and Setup WP Super Cache for Beginners</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-on-your-site/' rel='bookmark' title='Permanent Link: How to Install WordPress on Your Site'>How to Install WordPress on Your Site</a></li>
<li><a href='http://www.wpbeginner.com/beginners-guide/ultimate-guide-to-upgrade-wordpress-for-beginners-infograph/' rel='bookmark' title='Permanent Link: Ultimate Guide to Upgrade WordPress for Beginners [Infograph]'>Ultimate Guide to Upgrade WordPress for Beginners [Infograph]</a></li>
<li><a href='http://www.wpbeginner.com/beginners-guide/setting-up-and-managing-professional-email-addresses-with-gmail/' rel='bookmark' title='Permanent Link: Setting up and Managing Professional Email Addresses with Gmail'>Setting up and Managing Professional Email Addresses with Gmail</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a> is one of the must have plugins for every WordPress site. A lot of our users asked us to do a tutorial that shows how to setup WP Super Cache plugin step by step. Because we have this plugin included in our <a href="http://www.wpbeginner.com/plugins/recommended-plugins-for-wordpress/">Recommended WordPress Plugins</a> list, we think that it is necessary for us to show everyone how to take advantage of this extremely useful plugin. </p>
<p>This plugin makes a copy of your web page on the server and by doing so it speeds up page load time and reduces the resource consumption. It is essential that you have this plugin just incase if your site hits the Front Page of a social media network such as digg or stumbleupon, without this plugin, your server will most likely crash.</p>
<h4>What we will be doing in this tutorial?</h4>
<p>In this tutorial, we will show you how to install WP Super Cache Plugin. Then we will walk you through the process of setting it up which will include updating the .htaccess files and selecting the right settings. Many beginners are afraid to install this plugin because it is a some what complicated setup. But we assure you that after reading this guide, you will feel very comfortable installing this plugin on more than one site.</p>
<h4>1. Installing WP Super Cache</h4>
<p>We will use the built-in plugin installer to install the plugin. So you should login to your WP-Admin Panel. Click on the Plugin Tabs &raquo; Add New. Then type the plugin name &#8220;WP Super Cache&#8221;.</p>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpsupercache/searchwpsupercache.gif" alt="Search for WP Super Cache" /></p>
<p>You will see the results. It will most likely be the first plugin on the list. It is created by Donncha O Caoimh. Click on the Install link. You will see a screen like below. Click on Install Plugin and then Activate the Plugin.</p>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpsupercache/installnow.gif" alt="Install WP Super Cache" /></p>
<h4>2. Setup Permalinks</h4>
<p>A custom url or permalink structure is required for this plugin to work correctly. We recommend that you change your permalinks anyways to make it more SEO Friendly. Follow our tutorial &#8211; <a href="http://www.wpbeginner.com/wp-tutorials/seo-friendly-url-structure-for-wordpress/">SEO Friendly URL Structure for WordPress</a>.</p>
<h4>3. Turn WP Super Cache On</h4>
<p>You will need to visit Settings &raquo; WP Super Cache page, and turn it on.</p>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpsupercache/turnon.gif" alt="Enable WP Super Cache" /></p>
<h4>4. Update .htaccess</h4>
<p>After you turn WP Super Cache on as shown in Step 3, you need to scroll down on the WP Super Cache option page screen until you see the Mod Rewrite Rules Section. It looks like this:</p>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpsupercache/modrewrite.gif" alt="Enable WP Super Cache" /></p>
<p>Then scroll down a little bit more and click on Update Now</p>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpsupercache/updatemodrewrite.gif" alt="Enable WP Super Cache" /></p>
<p>You will be able to update this only if your web host has correct folder/file permissions setup. If you are using any of <a href="http://www.wpbeginner.com/beginners-guide/choosing-the-best-web-host-for-wordpress/">our recommended web hosts for WordPress</a>, then you should be able to do this without any problem.</p>
<p>Once you have finished all these 4 steps, WP Super Cache is setup completely for your site. </p>
<p>If you have any other issues or need additional help feel free to post your questions in the comments below. But before you do that make sure that you have read through the <a href="http://wordpress.org/extend/plugins/wp-super-cache/faq/">Frequently Asked Questions (FAQs)</a> about this plugin.</p>
<p><a href="http://www.wpbeginner.com/beginners-guide/how-to-install-and-setup-wp-super-cache-for-beginners/">How to Install and Setup WP Super Cache for Beginners</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-on-your-site/' rel='bookmark' title='Permanent Link: How to Install WordPress on Your Site'>How to Install WordPress on Your Site</a></li>
<li><a href='http://www.wpbeginner.com/beginners-guide/ultimate-guide-to-upgrade-wordpress-for-beginners-infograph/' rel='bookmark' title='Permanent Link: Ultimate Guide to Upgrade WordPress for Beginners [Infograph]'>Ultimate Guide to Upgrade WordPress for Beginners [Infograph]</a></li>
<li><a href='http://www.wpbeginner.com/beginners-guide/setting-up-and-managing-professional-email-addresses-with-gmail/' rel='bookmark' title='Permanent Link: Setting up and Managing Professional Email Addresses with Gmail'>Setting up and Managing Professional Email Addresses with Gmail</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEtVRvdI9BM:CNDa81fYkIs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEtVRvdI9BM:CNDa81fYkIs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=JEtVRvdI9BM:CNDa81fYkIs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEtVRvdI9BM:CNDa81fYkIs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEtVRvdI9BM:CNDa81fYkIs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEtVRvdI9BM:CNDa81fYkIs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=JEtVRvdI9BM:CNDa81fYkIs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEtVRvdI9BM:CNDa81fYkIs:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/JEtVRvdI9BM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/beginners-guide/how-to-install-and-setup-wp-super-cache-for-beginners/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/beginners-guide/how-to-install-and-setup-wp-super-cache-for-beginners/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 1.525 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-03-13 06:53:05 --><!-- Compression = gzip -->
