<?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>Uzzz Productions</title>
	<atom:link href="http://www.uzzz.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.uzzz.net</link>
	<description>Web Design, Custom WordPress Themes, and SEO</description>
	<lastBuildDate>Thu, 02 Feb 2012 11:34:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How to Prevent Youtube oEmbed from Overriding your WordPress Content</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/zcySV9OZRdk/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/zcySV9OZRdk/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 11:34:18 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5168</guid>
		<description><![CDATA[<p>Have you ever been to a site where you notice that media elements such as youtube videos override other content? This can happen if you have drop down menus, floating bars, lightbox popup etc. Well as designers, this get really frustrating for us. In the past, you would have to add ?wmode=transparent to each video embed code, but with WordPress 2.9, embedding videos have gotten much easier. All you have to do is paste the URL of a video, and...</p><p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-prevent-youtube-oembed-from-overriding-your-wordpress-content/">How to Prevent Youtube oEmbed from Overriding your WordPress Content</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>]]></description>
			<content:encoded><![CDATA[<p>Have you ever been to a site where you notice that media elements such as youtube videos override other content? This can happen if you have drop down menus, floating bars, lightbox popup etc. Well as designers, this get really frustrating for us. In the past, you would have to add ?wmode=transparent to each video embed code, but with WordPress 2.9, <a href="http://www.wpbeginner.com/beginners-guide/how-to-easily-embed-videos-in-wordpress-blog-posts/" title="Embedding Videos in WordPress">embedding videos</a> have gotten much easier. All you have to do is paste the URL of a video, and it will auto-embed. However, this makes it harder for us to add the ?wmode=transparent tag to each video. Well, you don&#8217;t have to worry. In this article, we will share with you a snippet that prevents Youtube and any other media files that are embedded via oEmbed from overriding your WordPress content. </p>
<p><strong>Example:</strong></p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/youtubeoembedissue.gif" alt="Youtube oEmbed issue" title="Youtube oEmbed issue" width="520" height="341" class="alignnone size-full wp-image-5170" /></p>
<p>All you have to do is open your theme&#8217;s functions.php file or better yet your <a href="http://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/" title="Site Specific Plugin for WordPress">site&#8217;s plugin file</a> and paste the following code:</p>
<pre class="brush: php; title: ; notranslate">function add_video_wmode_transparent($html, $url, $attr) {

if ( strpos( $html, &quot;&lt;embed src=&quot; ) !== false )
   { return str_replace('&lt;/param&gt;&lt;embed', '&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;&lt;/param&gt;&lt;embed wmode=&quot;opaque&quot; ', $html); }
elseif ( strpos ( $html, 'feature=oembed' ) !== false )
   { return str_replace( 'feature=oembed', 'feature=oembed&amp;wmode=opaque', $html ); }
else
   { return $html; }
}
add_filter( 'embed_oembed_html', 'add_video_wmode_transparent', 10, 3);</pre>
<p><a href="http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html" title="Source"  rel="nofollow">Source</a></p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-prevent-youtube-oembed-from-overriding-your-wordpress-content/">How to Prevent Youtube oEmbed from Overriding your WordPress Content</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=zcySV9OZRdk:H_8An7fwBgM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=zcySV9OZRdk:H_8An7fwBgM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM: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/zcySV9OZRdk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-prevent-youtube-oembed-from-overriding-your-wordpress-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/youtubeoembedissue.gif" length="" type="" />
		</item>
		<item>
		<title>How to Add Google+ “Add to Circles” Badge in your WordPress Site</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/n79x2Wqrsi0/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/n79x2Wqrsi0/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 14:14:41 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5176</guid>
		<description><![CDATA[<p>Recently, one of our users asked us how they can add the Google+ &#8220;Add to Circles&#8221; Badge in their WordPress site. In the past, we have shown you how to add the Google +1 Button your WordPress Posts. In this article, we will show you how to add the Google+ &#8220;Add to Circles&#8221; Badge in your WordPress site. Preview of how a Google+ Badge looks like: Before we begin, you should note that this is only for Google+ Pages not...</p><p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-google-add-to-circles-badge-in-your-wordpress-site/">How to Add Google+ &#8220;Add to Circles&#8221; Badge in your WordPress Site</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>]]></description>
			<content:encoded><![CDATA[<p>Recently, one of our users asked us how they can add the Google+ &#8220;Add to Circles&#8221; Badge in their WordPress site. In the past, we have shown you <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-the-google-1-button-to-your-wordpress/" title="How to Add the Google +1 Button in WordPress Posts">how to add the Google +1 Button your WordPress Posts</a>. In this article, we will show you how to add the Google+ &#8220;Add to Circles&#8221; Badge in your WordPress site.</p>
<p>Preview of how a Google+ Badge looks like:</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/googleplusbadges.gif" alt="Google+ Add to Circles Badge" title="Google+ Add to Circles Badge" width="520" height="109" class="alignnone size-full wp-image-5177" /></p>
<p>Before we begin, you should note that this is only for Google+ Pages not profiles. Example of <a href="https://plus.google.com/101634180904808003404/" title="WPBeginner on Google+" >Google+ Page</a>. Example of <a href="https://plus.google.com/101623299936375408403/" title="Syed Balkhi on Google+" >Google+ Profile</a>.</p>
<p>First thing you need to do is put the following code in your <strong>&lt;head&gt;</strong> section of your site which you can modify by editing the <strong>header.php</strong> file of your theme.</p>
<pre class="brush: php; title: ; notranslate">
&lt;link href=&quot;https://plus.google.com/{plusPageID}&quot; rel=&quot;publisher&quot; /&gt;&lt;script type=&quot;text/javascript&quot;&gt;
(function()
{var po = document.createElement(&quot;script&quot;);
po.type = &quot;text/javascript&quot;; po.async = true;po.src = &quot;https://apis.google.com/js/plusone.js&quot;;
var s = document.getElementsByTagName(&quot;script&quot;)[0];
s.parentNode.insertBefore(po, s);
})();&lt;/script&gt;
</pre>
<p>Don&#8217;t forget to replace the {plusPageID} with your Google+ Page ID. Your Page ID is a 21-digit string at the end of the URL. For example if your page URL is: https://plus.google.com/<strong>101634180904808003404</strong>/ then the numbers in bold is your Page ID.</p>
<p>Once you have added the header code, then all you have to do is place the following code wherever you want the Google+ Add to Circles widget to show. Most users like to display this in their sidebar, so you can either modify your <strong>sidebar.php</strong> file, or simply add it in a text widget area.</p>
<pre class="brush: php; title: ; notranslate">&lt;g:plus href=&quot;https://plus.google.com/{plusPageID}&quot; size=&quot;badge&quot;&gt;&lt;/g:plus&gt;</pre>
<p>For the Small badge, simply use this code:</p>
<pre class="brush: php; title: ; notranslate">&lt;g:plus href=&quot;https://plus.google.com/101634180904808003404&quot; size=&quot;smallbadge&quot;&gt;&lt;/g:plus&gt;</pre>
<p>We hope that this article has helped you. If it did, then please consider adding <a href="https://plus.google.com/101634180904808003404/" title="WPBeginner on Google+" >WPBeginner in your Circle</a>.</p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-google-add-to-circles-badge-in-your-wordpress-site/">How to Add Google+ &#8220;Add to Circles&#8221; Badge in your WordPress Site</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=n79x2Wqrsi0:l74DR3N6O6c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=n79x2Wqrsi0:l74DR3N6O6c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c: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/n79x2Wqrsi0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-add-google-add-to-circles-badge-in-your-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/googleplusbadges.gif" length="" type="" />
		</item>
		<item>
		<title>How to Show Your Latest Pinterest Pins in WordPress Sidebar Widgets</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/eSHnK2jTS7g/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/eSHnK2jTS7g/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 13:23:12 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5160</guid>
		<description><![CDATA[<p>Few days ago, we showed you how to add the Pinterest &#8220;Pin It&#8221; button in your WordPress blog. We are seeing more and more people joining Pinterest every day. Some of you might even want to show your latest pins in your sidebar. Well, in this article, we will show you an easy way to displaying your latest pinterest pins in your sidebar or any other dynamic widgets area. First thing you need to do is install and activate the...</p><p><a href="http://www.wpbeginner.com/plugins/how-to-show-your-latest-pinterest-pins-in-wordpress-sidebar-widgets/">How to Show Your Latest Pinterest Pins in WordPress Sidebar Widgets</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>]]></description>
			<content:encoded><![CDATA[<p>Few days ago, we showed you <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/" title="How to Add the Pinterest Pin It Button in WordPress Blogs">how to add the Pinterest &#8220;Pin It&#8221; button in your WordPress blog</a>. We are seeing more and more people joining <a href="http://pinterest.com/syedbalkhi" title="Pinterest" >Pinterest</a> every day. Some of you might even want to show your latest pins in your sidebar. Well, in this article, we will show you an easy way to displaying your latest pinterest pins in your sidebar or any other dynamic widgets area. </p>
<p>First thing you need to do is install and activate the <a href="http://wordpress.org/extend/plugins/pinterest-rss-widget/" title="Pinterest RSS Widget"  rel="nofollow">Pinterest RSS Widget plugin</a>. After installation, simply go to Appearance &raquo; Widgets. There will be a widget called  Pinterest RSS Widget. Drag it in the appropriate widget area, and configure the settings.</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestrsswidget.gif" alt="Pinterest RSS Widget for WordPress" title="Pinterest RSS Widget for WordPress" width="520" height="480" class="alignnone size-full wp-image-5161" /></p>
<p>You can customize the size of your thumbnails. You can also choose to display the titles below the images or not. </p>
<p>If you want to show the Pinterest Pins on a post or a page, then you can do that using the following shortcode:</p>
<p>[prw username="syedbalkhi" maxfeeds="10" divname="myList" printtext="0" target="newwindow" useenclosures="yes" thumbwidth="100" thumbheight="100" showfollow="medium"]</p>
<p>If you want to show the Pinterest Pins in your theme by hard coding it, you can also do that using this plugin. Simply add the following codes wherever you want to display the latest pins:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php get_pins_feed_list($username, $maxfeeds, $divname, $printtext, $target, $useenclosures, $thumbwidth, $thumbheight, $showfollow); ?&gt;
</pre>
<p>The parameters are:</p>
<ul>
<li><strong>username</strong> is the Pinterest username you wish to display Pins from (mandatory)</li>
<li><strong>maxfeeds</strong> is the maximum number of Pins to display (optional, default = 25)</li>
<li><strong>divname</strong> is a name suffix for the list class. &#8220;myList&#8221; will become &#8220;pins-feed-myList&#8221; (optional)</li>
<li><strong>printtext</strong> must be 1 if you want the first few words of the Pin description to be printed below the thumbnail (optional)</li>
<li><strong>target</strong> is &#8220;samewindow&#8221; or &#8220;newwindow&#8221;, depending on where you want links to open (optional, default = samewindow)</li>
<li><strong>useenclosures</strong> is &#8220;yes&#8221; or &#8220;no&#8221; (optional, default = yes). Use this if you don&#8217;t want to use the tag in the feed and force the script to find an image
<li>link in the feed item description.</li>
<li><strong>thumbwidth</strong> is a number that will set the width in pixels of the Pin&#8217;s thumbnail (optional, default = 150)</li>
<li><strong>thumbheight</strong> is a number that will set the height in pixels of the Pin&#8217;s thumbnail (optional, default = 150)</li>
<li><strong>showfollow</strong> is &#8220;large&#8221;, &#8220;medium&#8221;, &#8220;small&#8221;, &#8220;tiny&#8221; or &#8220;none&#8221; (optional, default = none). Use this if you want to show the &#8220;Follow Me On Pinterest&#8221; button below the thumbnails. Select the size that best fits the space allowed (&#8220;large&#8221; is 156&#215;26, &#8220;medium&#8221; is 78&#215;26, &#8220;small&#8221; is the square 61&#215;61 logo, and &#8220;tiny&#8221; is the 16&#215;16 logo.)</li>
</ul>
<p>When installing this plugin, we ran into the issue of images not showing up. Thankfully, it is a known issue and the author has already covered it into the FAQ&#8217;s section of the plugin. If your images are not showing up, then below are the possible solutions:</p>
<ul>
<li>TimThumb requires the GD library, which is available on any host sever with PHP 4.3+ installed. Make sure your host has this installed (most do).</li>
<li>Once installed and in-use, TimThumb will automatically create a /prw_tmp/ subfolder in your/ wp-content/uploads/ directory with proper write-permissions. If your host server doesn&#8217;t allow this by default, be sure to manually create the /prw_tmp/ subfolder in your/ wp-content/uploads/ directory and set the /prw_tmp/ folder permissions to 755. If this still doesn&#8217;t work, try setting the /cache/ folder permissions to 777.</li>
<li>Known issue with timthumb.php on <a href="http://www.wpbeginner.com/refer/hostgator" style=""  rel="nofollow" onmouseover="self.status='Host Gator - Best Web Host for WordPress';return true;" onmouseout="self.status=''">Hostgator</a>: If your website is hosted on <a href="http://www.wpbeginner.com/refer/hostgator" style=""  rel="nofollow" onmouseover="self.status='Host Gator - Best Web Host for WordPress';return true;" onmouseout="self.status=''">Hostgator</a>, you may need to contact <a href="http://www.wpbeginner.com/refer/hostgator" style=""  rel="nofollow" onmouseover="self.status='Host Gator - Best Web Host for WordPress';return true;" onmouseout="self.status=''">HostGator</a> to request &#8220;mod_security whitelisting&#8221;. More info here: <a href="http://support.hostgator.com/articles/specialized-help/technical/timthumb-basics" title="TimThumb Hostgator"  rel="nofollow">http://support.hostgator.com/articles/specialized-help/technical/timthumb-basics</a></li>
</ul>
<p>Download <a href="http://wordpress.org/extend/plugins/pinterest-rss-widget/" title="Pinterest RSS Widget"  rel="nofollow">Pinterest RSS Widget plugin</a></p>
<p><strong>P.S. Don&#8217;t forget to <a href="http://pinterest.com/syedbalkhi" title="Pinterest" >follow Syed on Pinterest</a></strong></p>
<p><a href="http://www.wpbeginner.com/plugins/how-to-show-your-latest-pinterest-pins-in-wordpress-sidebar-widgets/">How to Show Your Latest Pinterest Pins in WordPress Sidebar Widgets</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=eSHnK2jTS7g:R322iTIZDrw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=eSHnK2jTS7g:R322iTIZDrw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw: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/eSHnK2jTS7g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/how-to-show-your-latest-pinterest-pins-in-wordpress-sidebar-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestrsswidget.gif" length="" type="" />
		</item>
		<item>
		<title>How to Show Weather Forecast in Your WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/3xL3Yb-CbPQ/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/3xL3Yb-CbPQ/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 18:31:19 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5151</guid>
		<description><![CDATA[<p>Recently one of our users asked us if there was an easy way for her to display local weather on her blog. After doing some research, we found that there were tons of plugins available that will let you display weather forecast in WordPress. In this article, we will share two plugins that will let you show daily weather forecast in your WordPress blog. WP Google Weather The reason why we picked this plugin was its ease of installation. Unlike...</p><p><a href="http://www.wpbeginner.com/plugins/how-to-show-weather-forecast-in-your-wordpress/">How to Show Weather Forecast in Your 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>]]></description>
			<content:encoded><![CDATA[<p>Recently one of our users asked us if there was an easy way for her to display local weather on her blog. After doing some research, we found that there were tons of plugins available that will let you display weather forecast in WordPress. In this article, we will share two plugins that will let you show daily weather forecast in your WordPress blog.</p>
<h4><a href="http://wordpress.org/extend/plugins/wp-google-weather/" title="WP Google Weather"  rel="nofollow">WP Google Weather</a></h4>
<p>The reason why we picked this plugin was its ease of installation. Unlike many other plugins, this plugin does not require you to signup with a third-party service to get an API. Also, this plugin does not require any link backs on the front end.</p>
<p>All you have to do is install and activate <a href="http://wordpress.org/extend/plugins/wp-google-weather/" title="WP Google Weather"  rel="nofollow">WP Google Weather</a>. Then go to Appearance &raquo; Widgets. Then simply drag the WP Google Weather widget into the Sidebar. Enter the title of the widget, location, which language the display should be in, which unit the display should be in, and whether you want to show just today&#8217;s weather or the 3 day forecast. </p>
<p>Here is how the settings and the front-end display looks:</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/wp-google-weather.gif" alt="WP Google Weather" title="WP Google Weather" width="520" height="312" class="alignnone size-full wp-image-5152" /> </p>
<p>The front-end display is not the best however it can be customized to your liking. All you have to do is edit your stylesheet.</p>
<h4><a href="http://wordpress.org/extend/plugins/weather-and-weather-forecast-widget/" title="Weather and Weather Forecast Widget"  rel="nofollow">Weather and Weather Forecast Widget</a></h4>
<p>This plugin comes with a lot of options. It allows you to use the services like Wunderground and World Weather Online API to get your data. This plugin also has the auto-detect option for location, but you need to signup for another API service for that. The biggest downside in our eyes is that it is mandatory for you to display the link to the provider otherwise your API can be terminated. All those companies do have monthly paid API options where you can remove their link back.</p>
<p>First thing you need to do is install and activate <a href="http://wordpress.org/extend/plugins/weather-and-weather-forecast-widget/" title="Weather and Weather Forecast Widget"  rel="nofollow">Weather and Weather Forecast Widget</a>. Then go to Appearance &raquo; Widgets. Drag the GoGadget Weather Widget. Fill out all the settings. There are tons of options.</p>
<p>Here is how the preview looks:</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/weatherforecast.gif" alt="Weather Forecast Widget" title="Weather Forecast Widget" width="520" height="300" class="alignnone size-full wp-image-5153" /></p>
<p>Although the preview looks a lot nicer, the data powered by link is a really big turn down for us.</p>
<p>We hope that you like these plugins. If you know of a better plugin, then feel free to suggest it in the comments.</p>
<p><a href="http://www.wpbeginner.com/plugins/how-to-show-weather-forecast-in-your-wordpress/">How to Show Weather Forecast in Your WordPress</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=3xL3Yb-CbPQ:F7Lt0sd5T18:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=3xL3Yb-CbPQ:F7Lt0sd5T18:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18: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/3xL3Yb-CbPQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/how-to-show-weather-forecast-in-your-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/wp-google-weather.gif" length="" type="" />
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/weatherforecast.gif" length="" type="" />
		</item>
		<item>
		<title>How to Add Pinterest “Pin It” button in your WordPress Blog</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/MqtzILVJ6aE/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/MqtzILVJ6aE/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 15:51:47 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5144</guid>
		<description><![CDATA[<p>Recently while monitoring our blog stats, a new traffic source was popping up enough for us to notice. This traffic source was Pinterest. We started using the platform and saw great potential in it therefore we have added it on List25. In this article, we will show you how to add the Pinterest &#8220;Pin It&#8221; button to your WordPress blog. First thing you need to do is paste the following script in your footer.php file right before the body close...</p><p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/">How to Add Pinterest &#8220;Pin It&#8221; button in your WordPress Blog</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>]]></description>
			<content:encoded><![CDATA[<p>Recently while monitoring our blog stats, a new traffic source was popping up enough for us to notice. This traffic source was <a href="http://www.pinterest.com/syedbalkhi" title="Pinterest" >Pinterest</a>. We started using the platform and saw great potential in it therefore we have added it on <a href="http://list25.com/" title="List25" >List25</a>. In this article, we will show you how to add the Pinterest &#8220;Pin It&#8221; button to your WordPress blog.</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestbuttons.gif" alt="Pinterest Buttons" title="Pinterest Buttons" width="520" height="120" class="alignnone size-full wp-image-5147" /></p>
<p>First thing you need to do is paste the following script in your <em>footer.php</em> file right before the body close tag.</p>
<pre class="brush: php; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
(function() {
    window.PinIt = window.PinIt || { loaded:false };
    if (window.PinIt.loaded) return;
    window.PinIt.loaded = true;
    function async_load(){
        var s = document.createElement(&quot;script&quot;);
        s.type = &quot;text/javascript&quot;;
        s.async = true;
        s.src = &quot;http://assets.pinterest.com/js/pinit.js&quot;;
        var x = document.getElementsByTagName(&quot;script&quot;)[0];
        x.parentNode.insertBefore(s, x);
    }
    if (window.attachEvent)
        window.attachEvent(&quot;onload&quot;, async_load);
    else
        window.addEventListener(&quot;load&quot;, async_load, false);
})();
&lt;/script&gt;
</pre>
<p>Once you have done that, you can add the following code in your <em>single.php</em> file at a location of your choice:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php $pinterestimage = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'full' ); ?&gt;
&lt;a href=&quot;http://pinterest.com/pin/create/button/?url=&lt;?php echo urlencode(get_permalink($post-&gt;ID)); ?&gt;&amp;media=&lt;?php echo $pinterestimage[0]; ?&gt;&amp;description=&lt;?php the_title(); ?&gt;&quot; class=&quot;pin-it-button&quot; count-layout=&quot;vertical&quot;&gt;Pin It&lt;/a&gt;
</pre>
<p>The code above is basically pulling your Featured Image, the title of your post as description, and the URL of the post. It is designed for the vertical share button. If you want to put the horizontal share button, simply change count-layout parameter to horizontal.</p>
<p>We hope that this will help. P.S. if you are on Pinterest then please follow <a href="http://www.pinterest.com/syedbalkhi" title="Pinterest" >Syed Balkhi</a></p>
<h4>Pinterest Shortcode</h4>
<p>Update: one of our user wanted to create a shortcode for the Pinterest &#8220;Pin It&#8221; button. You can easily do so by pasting the following code either in your theme&#8217;s functions.php file or your site plugin&#8217;s file:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
function get_pin($atts) {
$pinterestimage = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'full' );
return '&lt;a href=&quot;http://pinterest.com/pin/create/button/?url' . urlencode(get_permalink($post-&gt;ID)) . '&amp;media=' . $pinterestimage[0] . '&amp;description=' . get_the_title() .'&quot; class=&quot;pin-it-button&quot; count-layout=&quot;vertical&quot;&gt;Pin It&lt;/a&gt;'; }

add_shortcode('pin', 'get_pin');
?&gt;
</pre>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/">How to Add Pinterest &#8220;Pin It&#8221; button in your WordPress Blog</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=MqtzILVJ6aE:Su4LiKq5nwg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=MqtzILVJ6aE:Su4LiKq5nwg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg: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/MqtzILVJ6aE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestbuttons.gif" length="" type="" />
		</item>
		<item>
		<title>Online Community Management for Dummies (Book Review)</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/nXWtfj-oLr8/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/nXWtfj-oLr8/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 17:16:25 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5137</guid>
		<description><![CDATA[<p>I was at a session in Affiliate Summit West where I ran into Deborah Ng, Conference Director of BlogWorld Expo. Over the past years, her and I have become good friends. I was honored to speak at the last two BlogWorld events. I knew Deb had a book out, but I was truly surprised when she pulled one out of her bag and gave it to me. I was crazy busy once I came back, but I am finally done...</p><p><a href="http://www.wpbeginner.com/books/online-community-management-for-dummies-book-review/">Online Community Management for Dummies (Book 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>]]></description>
			<content:encoded><![CDATA[<p>I was at a session in <a href="http://www.wpbeginner.com/refer/affsummit" style=""  rel="nofollow" >Affiliate Summit</a> West where I ran into Deborah Ng, Conference Director of <a href="http://www.wpbeginner.com/refer/bwe" style=""  rel="nofollow" >BlogWorld Expo</a>. Over the past years, her and I have become good friends. I was honored to speak at the last two <a href="http://www.wpbeginner.com/refer/bwe" style=""  rel="nofollow" >BlogWorld</a> events. I knew Deb had a book out, but I was truly surprised when she pulled one out of her bag and gave it to me. I was crazy busy once I came back, but I am finally done going through the book. Below are my thoughts about the book: <a href="http://www.wpbeginner.com/refer/communitymanagement" title="Online Community Management for Dummies" >Online Community Management for Dummies</a>.</p>
<p>Community Management is something that you will have to do as a blogger. Just like most other things communities do not start out big, but it will only grow big if you are a good community manager. Deb. shares all different type of aspects to community management. For someone who is relatively new, it could be a lot to handle. I know that from personal experience. This book outlines not only all the hats that you have to wear as a community manager, but it shows you how to do it well. </p>
<p>The book covers topics like Basic outline of community management, establishing community policies and guidelines, building a productive online community where you listen and communicate with your members, growing your community by encouraging interaction and involvement as well as attracting more people through other measures. Most importantly, Deb shares her expertise on how to assess your growth, evaluate the results, and make decisions on what you find. </p>
<p>One of the aspects I love about Deb is that she takes her online connections offline. I talked to her over the web for the first time, but now I have met her at numerous events. She is exactly the same person as she is online who is welcoming and friendly. I find it a rare characteristic to have. A lot of people I meet online are totally different in real life. Deb shares her expertise of taking your online community offline by hosting meetups, tweetups or other events. The book ends with ten essential tasks for community managers, ten must have skills, and ten best practices.</p>
<p>I think the book was a breeze to read. I cruised through the information really fast. I wished that it talked a little bit more about the monetization aspects, but I realize the book already covers too much and it is hard to cover everything.</p>
<p>If you are a blogger or an online community manager, this is a must read book. Most of the time, I don&#8217;t like Dummies books, but this one was well-worth the read.</p>
<p><a href="http://www.wpbeginner.com/refer/communitymanagement" title="Online Community Management for Dummies" >Order your copy of Online Community Management for Dummies</a></p>
<p>P.S. Thanks Deb for signing my copy. I love collecting the books with author signature <img src='http://cdn.wpbeginner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/onlinecommunitymanagementbook.gif" alt="Online Community Management for Dummies Signed by Deb Ng" title="Online Community Management for Dummies Signed by Deb Ng" width="520" height="620" class="alignnone size-full wp-image-5138" /></p>
<p><a href="http://www.wpbeginner.com/books/online-community-management-for-dummies-book-review/">Online Community Management for Dummies (Book Review)</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=nXWtfj-oLr8:Mk8oEcA4dzk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=nXWtfj-oLr8:Mk8oEcA4dzk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk: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/nXWtfj-oLr8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/books/online-community-management-for-dummies-book-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/onlinecommunitymanagementbook.gif" length="" type="" />
		</item>
		<item>
		<title>How to Split WordPress Posts into Multiple Pages</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/6dcA9AgB0f8/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/6dcA9AgB0f8/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 16:36:38 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5133</guid>
		<description><![CDATA[<p>Yesterday we wrote an article on the site showing you how to increase pageviews and reduce bounce rate in WordPress. One of the tips we mentioned was splitting long posts into multiple pages. You can see an example of how we split our posts into two pages or even into five pages. After writing that article, we got a lot of inquiries from people asking us multiple questions. How do you split the posts into multiple pages? I put the...</p><p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-split-wordpress-posts-into-multiple-pages/">How to Split WordPress Posts into Multiple Pages</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>]]></description>
			<content:encoded><![CDATA[<p>Yesterday we wrote an article on the site showing you <a href="http://www.wpbeginner.com/beginners-guide/how-to-increase-pageviews-and-reduce-bounce-rate-in-wordpress/" title="How to Increase Pageviews and Reduce Bounce Rate in WordPress">how to increase pageviews and reduce bounce rate in WordPress</a>. One of the tips we mentioned was splitting long posts into multiple pages. You can see an example of how we split our posts into <a href="http://list25.com/25-hilarious-siri-responses/" title="25 Hilarious Siri Responses" >two pages</a> or even into <a href="http://list25.com/25-epic-fail-gifs/" title="Epic Fail GIFs" >five pages</a>. After writing that article, we got a lot of inquiries from people asking us multiple questions. How do you split the posts into multiple pages? I put the &lt;!&#8211;nextpage&#8211;&gt; tag, but no pagination shows up. Well worry not. In this article, we will show you how to split WordPress posts into multiple pages.</p>
<p>On most well-coded themes, all you have to do is paste this code: &lt;!&#8211;nextpage&#8211;&gt; wherever you want the next page to start. The pagination will automatically show up. But that might not be the case if your theme is not coded properly. </p>
<p>If for some reason, pagination is not showing up after you have pasted the next page tags, then you would need to add the following code in your <em>single.php</em> loop.</p>
<pre class="brush: php; title: ; notranslate">&lt;?php wp_link_pages(); ?&gt;</pre>
<p>Once you add that, then the pagination will start to show. There are several parameters for this function that you can use. The codex page for <a href="http://codex.wordpress.org/Styling_Page-Links" title="Styling Page Links"  rel="nofollow">Styling Page-Links</a> does a good job explaining that.</p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-split-wordpress-posts-into-multiple-pages/">How to Split WordPress Posts into Multiple Pages</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=6dcA9AgB0f8:dP9pK3YEjpM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=6dcA9AgB0f8:dP9pK3YEjpM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=6dcA9AgB0f8:dP9pK3YEjpM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=6dcA9AgB0f8:dP9pK3YEjpM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=6dcA9AgB0f8:dP9pK3YEjpM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=6dcA9AgB0f8:dP9pK3YEjpM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=6dcA9AgB0f8:dP9pK3YEjpM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=6dcA9AgB0f8:dP9pK3YEjpM: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/6dcA9AgB0f8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-split-wordpress-posts-into-multiple-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Increase Pageviews and Reduce Bounce Rate in WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/EVGb-7nNKtY/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/EVGb-7nNKtY/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 16:44:56 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5128</guid>
		<description><![CDATA[<p>When starting out, most bloggers believe that it is super hard to get people to your blog. Whereas most expert bloggers think that getting people to your blog is the easy part. Getting the users to stay on your site is harder. Most users come to your site and end up leaving without even going to the second page. When a user leaves without even going to the second page, it increases your bounce rate. It also decreases your pageviews...</p><p><a href="http://www.wpbeginner.com/beginners-guide/how-to-increase-pageviews-and-reduce-bounce-rate-in-wordpress/">How to Increase Pageviews and Reduce Bounce Rate 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>]]></description>
			<content:encoded><![CDATA[<p>When starting out, most bloggers believe that it is super hard to get people to your blog. Whereas most expert bloggers think that getting people to your blog is the easy part. Getting the users to stay on your site is harder. Most users come to your site and end up leaving without even going to the second page. When a user leaves without even going to the second page, it increases your bounce rate. It also decreases your pageviews per visit. On a bigger picture, it decreases your ad revenue. In this article, we will share with you tips and tricks that will help you increase pageviews and reduce bounce rate in WordPress.  </p>
<h4>Before we start</h4>
<p>Lets cover some basics regarding terminology and technology. <strong>Bounce rate</strong> represents the percentage of visitors who enter your site and &#8220;bounce&#8221; (leave the site) rather than continue viewing other pages within the same site. <strong>Page view</strong> is a request to load a single page on an internet site. We use <a href="http://www.wpbeginner.com/beginners-guide/how-to-install-google-analytics-in-wordpress/" title="Google Analytics">Google Analytics</a> to track our data. You are welcome to use another analytics service, or you can simply <a href="http://www.wpbeginner.com/beginners-guide/how-to-install-google-analytics-in-wordpress/" title="How to Install Google Analytics in WordPress">install google analytics in your WordPress site</a>. </p>
<p>Now that we have taken care of the basic terminology, you are probably wondering <strong>why the heck do these numbers matter?</strong></p>
<p>If you are running a site that is primarily monetized by banner ads, then the number of pageviews matter. If you are trying to build a loyal audience, then the number of bounce rate matters. Also the lower your bounce rate, the better ads eCPM (cost per thousand) or CPC (cost per click) you will get. When the same user views the next page, your ad provider most likely has a better ad to serve them thus giving you a higher eCPM or CPC. </p>
<p>We have consulted with a lot of clients helping them increase their pageviews and reduce bounce rates. We have also done a lot of experiments on our own sites like <a href="http://list25.com/" title="List25" >List25</a>. So all the methods that we will share are the ones that we have used in the past and know that they work.</p>
<p><strong>P.S. These techniques will ONLY work if you have Good Content.</strong></p>
<h4>Interlink Your Posts</h4>
<p>Anytime that you can interlink your other posts within the post content, you are going to see an increase in pageviews. In <a href="http://www.wpbeginner.com/news/whats-new-in-wordpress-3-1-django-features-and-screenshots/" title="WordPress 3.1 Features">WordPress 3.1</a>, interlinking got even easier because you can simply search for the post you want to link while adding links. Interlinking techniques work great when you have a site with a lot of articles. If you are just starting out, then you will be a bit limited. So how do you go back and interlink older articles when you have something new? You can manually do it, but it will take some time. There are plugins that lets you <a href="http://www.wpbeginner.com/wp-tutorials/how-to-automatically-link-keywords-with-affiliate-links-in-wordpress/" title="Automatically Link Keywords in WordPress">automatically link keywords in WordPress</a> (Although that article is showing you how we did this for affiliate links, you can use it for internal linking purposes as well). Not only does interlinking help you increase pageviews and reduce bounce rates, it also helps with SEO as well.</p>
<p>If you want to see an example of interlinking, then just look at the paragraph above.</p>
<h4>Show Related Posts After the Post</h4>
<p>One of the main reasons why the user leave your blog after reading the post is because you are not showing them what to do next. By showing the user with a list of &#8220;related posts&#8221; or &#8220;other popular posts&#8221;, you may get them to go on to visit another post in your site. There are a lot of ways you can add related posts to your blog. You can use a plugin called <a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-related-posts-in-wordpress/" title="YARPP">YARPP</a> that has its advanced algorithm that picks the related post. You can show <a href="http://www.wpbeginner.com/wp-themes/how-to-add-related-posts-with-a-thumbnail-without-using-plugins/" title="Related Posts with Thumbnails without a plugin">related posts by category or tags</a> without using a plugin. You can also show related posts by showing <a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-related-posts-by-same-author-in-wordpress/" title="Posts by the same author in WordPress">other posts by the same author</a>. </p>
<h4>Show Excerpts on Front / Archive Pages</h4>
<p>Showing excerpts on front/archive pages have two advantages. First, it decreases page load time. Second, it helps increase the pageviews. You should almost never show full posts on your front page or archive page. Imagine having like 25 images in one post, and then have 5 of those on one page. It would be a horrible user experience because of (slow load time and super long page) which would make the user leave your site. We have a tutorial on <a href="http://www.wpbeginner.com/wp-themes/how-to-display-post-excerpts-in-wordpress-themes/" title="How to Display Post Excerpts in WordPress Themes">how to display post excerpts in WordPress themes</a>. Most good theme frameworks like <a href="http://www.wpbeginner.com/refer/studiopress-genesis" style=""  rel="nofollow" >Genesis</a>, <a href="http://www.wpbeginner.com/refer/thesis" style=""  rel="nofollow" onmouseover="self.status='Thesis - The Best WordPress Theme';return true;" onmouseout="self.status=''">Thesis</a>, <a href="http://www.wpbeginner.com/refer/headwaythemes" style=""  rel="nofollow" >Headway</a> etc. already have this option built-in. </p>
<h4>Splitting up Long Posts</h4>
<p>Are you writing a super long posts? Well, you can split it into multiple pages using the WordPress <strong>&lt;!&#8211;nextpage&#8211;&gt;</strong> tag in your post. Simply add it wherever you want, and your post will split into multiple pages. You can see an example of how we split our posts into <a href="http://list25.com/25-hilarious-siri-responses/" title="Hilarious Siri Responses" >two pages</a> or even into <a href="http://list25.com/25-epic-fail-gifs/" title="Epic Fail GIFs" >five pages</a>. You have to be very careful when doing this because if you do not have a sufficient amount of content on each page, then the user might get pissed of. We have seen a lot of big name sites like Forbes, NY Times, Wall Street Journal and others utilize this technique. </p>
<h4>Interactive Sidebar</h4>
<p>Your sidebar can play a crucial role in increasing pageviews and reducing bounce rate. You can show your <a href="http://www.wpbeginner.com/wp-tutorials/display-popular-posts-by-day-week-month-and-all-time-in-wordpress/" title="Display Popular Posts in WordPress">popular posts in the sidebar</a>. You can even customize it to show popular posts by week, month, all time. You can also show your most recent posts only on single post pages. We have seen sites that create custom images to navigate to specific posts of theirs. You can integrate other sections of your site in your sidebar for example look at our WordPress Coupons section or the gallery section in the sidebar.</p>
<h4>Encourage Random Browsing</h4>
<p>On <a href="http://list25.com/" title="List25" >List25</a> we created a feature called I&#8217;m Feeling Curious. When a user clicks on this button, they will be <a href="http://www.wpbeginner.com/wp-tutorials/how-to-redirect-users-to-a-random-post-in-wordpress/" title="Redirect users to a random post in WordPress">redirected to a random post in WordPress</a>. We put the button in our header bar which was a very hot spot. After seeing good results, we ended up putting it on WPBeginner as well and called it Explore.</p>
<h4>Results</h4>
<p>When we started out <a href="http://list25.com/" title="List25" >List25</a>, we faced a lot of criticism. People were saying that sites like these fail to grow because it is hard to keep a loyal audience. We asked around and a lot of people who had done something similar in the past reported that the bounce rate for a siimlar site was soaring in 80% range. Average user would view only one page per visit and leave. We started the site out to get some base data. Our bounce rate was in the 75% range. We slowly started implementing the changes mentioned above. Bounce rate decreased from the average of 76% to 42%. Our pageviews per visit increased to 2.79 / pages per visit. Average time spent on page went to the average of 3 minutes and 40 seconds << This is the average time spent for our 1 million unique visitors! </p>
<p>What are you doing to increase pageviews and reduce bounce rate? Share with us.</p>
<p><a href="http://www.wpbeginner.com/beginners-guide/how-to-increase-pageviews-and-reduce-bounce-rate-in-wordpress/">How to Increase Pageviews and Reduce Bounce Rate in WordPress</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=EVGb-7nNKtY:TNi7z5fuJ24:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=EVGb-7nNKtY:TNi7z5fuJ24:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=EVGb-7nNKtY:TNi7z5fuJ24:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=EVGb-7nNKtY:TNi7z5fuJ24:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=EVGb-7nNKtY:TNi7z5fuJ24:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=EVGb-7nNKtY:TNi7z5fuJ24:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=EVGb-7nNKtY:TNi7z5fuJ24:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=EVGb-7nNKtY:TNi7z5fuJ24: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/EVGb-7nNKtY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/beginners-guide/how-to-increase-pageviews-and-reduce-bounce-rate-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gravity Forms vs. Wufoo (Which is a better form management solution?)</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/aq6gDAVksf8/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/aq6gDAVksf8/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 16:06:29 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5121</guid>
		<description><![CDATA[<p>Recently one of our users asked us which is a better form plugin between Gravity Forms and Wufoo. In the past we have done a lot of posts about Gravity forms but none about Wufoo. We have used both form management softwares personally, so we can give you a fairly un-biased comparison of these two platforms. In this article, we will compare Gravity Forms vs. Wufoo to determine which is the better form management solution for WordPress. One thing that...</p><p><a href="http://www.wpbeginner.com/opinion/gravity-forms-vs-wufoo-which-is-a-better-form-management-solution/">Gravity Forms vs. Wufoo (Which is a better form management solution?)</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>]]></description>
			<content:encoded><![CDATA[<p>Recently one of our users asked us which is a better form plugin between <a href="http://www.wpbeginner.com/refer/gravityforms" style=""  rel="nofollow" >Gravity Forms</a> and <a href="http://wufoo.com/" title="Wufoo"  rel="nofollow">Wufoo</a>. In the past we have done a lot of posts about <a href="http://www.wpbeginner.com/refer/gravityforms" style=""  rel="nofollow" >Gravity forms</a> but none about Wufoo. We have used both form management softwares personally, so we can give you a fairly un-biased comparison of these two platforms. In this article, we will compare <a href="http://www.wpbeginner.com/refer/gravityforms" style=""  rel="nofollow" >Gravity Forms</a> vs. Wufoo to determine which is the better form management solution for WordPress. One thing that is important to note is that we will be using our frugal blogger / developer mentality to cast the winner.</p>
<h4>Pricing</h4>
<p>Yes we know that pricing is one of the most important factor for bloggers when choosing a platform. It is even more important in this comparison because it shows you a key difference between these two platforms. Gravity Forms is a plugin whereas Wufoo is a hosted service. Having that said, to utilize the full set of features Gravity Forms has to offer, you must get the developer option which costs $199 <a href="http://coupons.wpbeginner.com/wordpress-plugin-coupons/gravity-forms-coupons/" title="Gravity Forms Coupon">with a coupon</a> it can get as low as $149. This gets you all what Gravity Forms has to offer with 1 year of support and updates, so it is sort of like an annual subscription except for the renewal price you can get a 50% discount. To utilize all what Wufoo has to offer, you must get their Bona Fide plan which goes for $29.95 / month. This makes it roughly $359 / year.</p>
<p><strong>Winner: Gravity Forms</strong></p>
<h4>Usage Restrictions</h4>
<p>Because Wufoo is a hosted platform there are usage restrictions. With the Bona Fide plan you are only allowed 5 users which is something most can deal with. You get unlimited forms / reports. However, you are limited to 3,000 Entries / month. If you have file attachment option in your form, then you have a total of 1GB storage. Ofcourse you can upgrade to one of their higher plans which goes as high as $199.95 / month for 100,000 entries. So this really depends on how large your site is. Note: If you go over your allocated amount of entries then you pay $0.05 USD per entry.</p>
<p>Gravity forms allows you to have unlimited forms, unlimited users (you can have as many in your WordPress install), and there is as much storage available as your <a href="http://www.wpbeginner.com/refer/hostgator" style=""  rel="nofollow" onmouseover="self.status='Host Gator - Best Web Host for WordPress';return true;" onmouseout="self.status=''">web hosting</a> plan allows. Last but certainly not the least, you have unlimited entries.</p>
<p><strong>Winner: Gravity Forms</strong></p>
<h4>Ease of Use</h4>
<p>Both platforms are fairly easy to use. Both Gravity forms and Wufoo has a drag drop form editor. You can select the type of field and create it with one click. The process of creating forms on both are fairly intuitive and easy to learn. When it comes to managing entries, the interface is far superior in Wufoo probably because they are not restricted by the WordPress backend UI. Gravity forms tries to adhere to the WordPress user-interface therefore cannot provide a superior UI with icons and such like Wufoo. While Gravity forms have all the similar features, we personally like the Wufoo interface better. You can see it for yourself how Wufoo makes it so much easier to browse between the entries with the navigation. You can also edit, delete, email, or print the entry all from one spot.</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/wufooentry.gif" alt="Wufoo Entry UI" title="Wufoo Entry UI" width="520" height="388" class="alignnone size-full wp-image-5123" /></p>
<p>While gravity forms have these options, its just not as clear. P.S. There is no option navigate between the entries from the entry page in Gravity forms.</p>
<p><strong>Winner: Slight edge to Wufoo</strong></p>
<h4>Security</h4>
<p>Security can be crucial when you are collecting important information through your forms. While gravity forms is a secure plugin, it is not a service. So the security responsibility of the data collected falls on you. Wufoo comes with SSL encryption, so all of your data is transmitted securely. Getting a SSL certificate can cost as much as $79 bucks, but if you install it on your server then Gravity Forms is hundred percent <a href="http://www.gravityhelp.com/gravity-forms-v1-6-beta-1-released/comment-page-1/#comment-357" title="Gravity Forms SSL">compatible</a> with it.</p>
<p><strong>Winner: If you are paying for SSL with Gravity Forms and handling your server security then there is tie. Otherwise Wufoo wins.</strong></p>
<h4>Multi-Page Forms</h4>
<p>Often when doing lead generation, you may find a need to collect some extra information to provide superior service. Multi-page forms help a ton in order to increase your submission rate. Thankfully both of these platforms have the option that allows you to easily create multi-page forms. In the layout, you have the option to show the progress bar which helps the user see how long the form really is. However, one thing that gives Wufoo a huge edge in our eyes is the partial form submission. A lot of times users tend to leave the survey / form half way through if they feel that it is way too long. Wufoo allows you to save that partial entry everytime a user goes on to then next page of the form. If you are only showing like 2-3 questions / page, then you will get as much information from the user as possible. Gravity forms on the other hand has no way to store a partial submission. </p>
<p>If you are a consultant and you have a client survey, you might as well have as much information possible rather than losing the whole lead entirely.</p>
<p><strong>Winner: Wufoo</strong></p>
<h4>Third Party Integrations</h4>
<p>Gravity Forms offer integrations with <a href="http://www.wpbeginner.com/refer/aweber" style=""  rel="nofollow" onmouseover="self.status='Aweber - Email Marketing Software';return true;" onmouseout="self.status=''">Aweber</a>, <a href="http://www.wpbeginner.com/refer/mailchimp" style=""  rel="nofollow" >MailChimp</a>, Campaign Monitor, Freshbooks, PayPal, and Twilio. This allows you to collect emails from your forms and collect payments as well. Wufoo which has been in the market since 2006 with a fairly recent acquisition of <a href="http://mashable.com/2011/04/25/surveymonkey-acquires-wufoo/" title="Mashable Funding Source"  rel="nofollow">$35 million</a> boasts a lot of third party integrations. To list some popular ones: PayPal, Authorize.Net, Google Checkout, Freshbooks, HighRise, Salesforce, <a href="http://www.wpbeginner.com/refer/mailchimp" style=""  rel="nofollow" >MailChimp</a>, Campaign Monitor, and <a href="http://wufoo.com/partners/" title="Wufoo Integration"  rel="nofollow">more</a>.</p>
<p>Wufoo has a lot of third party integrations, but they have a much larger team and funding. Not to mention they have been around for longer.</p>
<p><strong>Winner: Wufoo</strong></p>
<h4>Ability to take Guest Posts</h4>
<p>Gravity forms has an option that allows you to accept guest post submission using Gravity forms and save them as drafts. This has made our life so much easier in managing our <a href="http://gallery.wpbeginner.com/" title="WordPress Gallery">WordPress Gallery</a>. You can have the option for attachments, categories, tags etc. While Wufoo is a great form management solution, it does not have this feature available for WordPRess.</p>
<p>Winner: Gravity Forms</p>
<h4>User Registration</h4>
<p>Gravity Forms have a powerful <a href="http://www.gravityforms.com/add-ons/user-registration/" title="User Registration Add-on"  rel="nofollow">user-registration add-on</a> that works seamlessly with Multi-site and BuddyPress installs. Wufoo lacks such integration with WordPress. You can use this add-on to create custom user meta so much easier than before.</p>
<p><strong>Winner: Gravity Forms</strong></p>
<h4>Cool Examples</h4>
<p>Wufoo has a page dedicated to <a href="http://wufoo.com/examples/" title="Wufoo Examples"  rel="nofollow">examples</a> of how users are using their service.</p>
<p>Gravity Forms should have something like that, but they do not. The two cool uses that we have found are:</p>
<p><a href="http://gallery.wpbeginner.com" title="WPBeginner WordPress Gallery">WPBeginner WordPress Gallery</a><br />
<a href="http://themergency.com/generators/wordpress-custom-post-types/" title="Custom Post Type Generator" >Custom Post Type Generator</a></p>
<p>As you can see that both of these platforms have something unique to offer. It is very hard to say that one is completely superior to other. We still use Gravity Forms on our sites. We are also using Wufoo on some of our other projects. It really depends on what you really need.</p>
<p><a href="http://www.wpbeginner.com/opinion/gravity-forms-vs-wufoo-which-is-a-better-form-management-solution/">Gravity Forms vs. Wufoo (Which is a better form management solution?)</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=aq6gDAVksf8:2udvNNBqvm8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=aq6gDAVksf8:2udvNNBqvm8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=aq6gDAVksf8:2udvNNBqvm8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=aq6gDAVksf8:2udvNNBqvm8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=aq6gDAVksf8:2udvNNBqvm8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=aq6gDAVksf8:2udvNNBqvm8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=aq6gDAVksf8:2udvNNBqvm8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=aq6gDAVksf8:2udvNNBqvm8: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/aq6gDAVksf8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/opinion/gravity-forms-vs-wufoo-which-is-a-better-form-management-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/wufooentry.gif" length="" type="" />
		</item>
		<item>
		<title>How to Create a Blogging Checklist in WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/b-FkmlDAux4/</link>
		<comments>http://feedproxy.google.com/~r/wpbeginner/~3/b-FkmlDAux4/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 14:59:35 +0000</pubDate>
		<dc:creator>WPBeginner</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5110</guid>
		<description><![CDATA[<p>Whether you have a multi-author blog or a single-author blog, a checklist is something that everyone needs. When writing we often make careless mistakes. Often we go live with those changes and have our users point out the errors. Sometimes the error in the post goes uncaught for weeks. Well that is when you need a checklist can come handy. Checklist can serve as a list of reminders that you set for yourself before you publish a post. Most folks...</p><p><a href="http://www.wpbeginner.com/plugins/how-to-create-a-blogging-checklist-in-wordpress/">How to Create a Blogging Checklist 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>]]></description>
			<content:encoded><![CDATA[<p>Whether you have a multi-author blog or a single-author blog, a checklist is something that everyone needs. When writing we often make careless mistakes. Often we go live with those changes and have our users point out the errors. Sometimes the error in the post goes uncaught for weeks. Well that is when you need a checklist can come handy. Checklist can serve as a list of reminders that you set for yourself before you publish a post. Most folks just create a PDF checklist for their authors and send it to them via email. Some utilize services like Google Docs or even a project management platform. In this article, we will show you how to create a blogging checklist in WordPress.</p>
<p>First you need to install and activate the plugin called <a href="http://wordpress.org/extend/plugins/blogging-checklist/" title="Blogging Checklist"  rel="nofollow">Blogging Checklist</a>. Upon activation, a new menu &#8220;Blogging Checklist&#8221; will appear under the Settings tab.</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/bloggingchecklistsetting.gif" alt="Blogging Checklist Settings" title="Blogging Checklist Settings" width="520" height="422" class="alignnone size-full wp-image-5111" /></p>
<p>You can add whatever you like in to your checklist. There are examples to copy and paste on the checklist screen. Once you click save changes, then your checklist will be visible on the post write page.</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/bloggingchecklist.gif" alt="Blogging Checklist" title="Blogging Checklist" width="520" height="185" class="alignnone size-full wp-image-5112" /></p>
<p>One of the downside of this plugin is that it does not store any of the checklist data. So lets say you did 3 out of 5 things on the checklist and you reload the page, it will reset all boxes. It would be great if this plugin can actually store the data and not let the user hit publish until all boxes are checked.</p>
<p><a href="http://wordpress.org/extend/plugins/blogging-checklist/" title="Blogging Checklist"  rel="nofollow">Download Blogging Checklist</a></p>
<p><a href="http://www.wpbeginner.com/plugins/how-to-create-a-blogging-checklist-in-wordpress/">How to Create a Blogging Checklist in WordPress</a> is a post from: <a href="http://www.wpbeginner.com"  rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=b-FkmlDAux4:u7bjzI12WKo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=b-FkmlDAux4:u7bjzI12WKo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=b-FkmlDAux4:u7bjzI12WKo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=b-FkmlDAux4:u7bjzI12WKo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=b-FkmlDAux4:u7bjzI12WKo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=b-FkmlDAux4:u7bjzI12WKo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=b-FkmlDAux4:u7bjzI12WKo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=b-FkmlDAux4:u7bjzI12WKo: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/b-FkmlDAux4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/how-to-create-a-blogging-checklist-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/bloggingchecklist.gif" length="" type="" />
<enclosure url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/bloggingchecklistsetting.gif" length="" type="" />
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.281 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-04 03:53:45 -->

