<?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>XtremelySocial.com &#187; Our WordPress Tips</title>
	<atom:link href="http://xtremelysocial.com/news/ournews/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://xtremelysocial.com</link>
	<description>Social websites, Facebook applications, and news</description>
	<lastBuildDate>Tue, 31 Jan 2012 23:50:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Make an Awesome Maintenance Mode Screen for WordPress</title>
		<link>http://xtremelysocial.com/2010/how-to-make-an-awesome-maintenance-mode-screen-for-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-make-an-awesome-maintenance-mode-screen-for-wordpress</link>
		<comments>http://xtremelysocial.com/2010/how-to-make-an-awesome-maintenance-mode-screen-for-wordpress/#comments</comments>
		<pubDate>Tue, 25 May 2010 14:55:28 +0000</pubDate>
		<dc:creator>Tim Nicholson</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Our News]]></category>
		<category><![CDATA[Our WordPress Tips]]></category>

		<guid isPermaLink="false">http://xtremelysocial.com/?p=2800</guid>
		<description><![CDATA[Whenever you update your WordPress site to a new version or mass update multiple plugins at the same time, WordPress automatically places your site in &#8220;maintenance mode&#8221;. In this tutorial, I&#8217;ll show you to how to easily make an awesome &#8220;theme&#8221; that gets displayed instead of the blank white page that just says the site...]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-2081" href="http://xtremelysocial.com/2010/how-to-create-a-popular-content-top-10-page-in-wordpress/wp_logo-150x150/"><img class="alignleft size-full wp-image-2081" title="wp_logo-150x150" src="http://xtremelysocial.com/wp-content/uploads/2010/01/wp_logo-150x150.jpg" alt="Wordpress Logo" width="150" height="150" /></a>Whenever you update your WordPress site to a new version or mass update multiple plugins at the same time, WordPress automatically places your site in &#8220;maintenance mode&#8221;. In this tutorial, I&#8217;ll show you to how to easily make an awesome &#8220;theme&#8221; that gets displayed instead of the blank white page that just says the site is undergoing maintenance.</p>
<p>The best part about this is that its all automatically handled by WordPress and they have already built in a &#8220;hook&#8221; to easily do this. If WordPress finds a file called maintenance.php in your /wp-content directory, it will use that file instead of the default blank white page.</p>
<p>The key thing to note is that while your site is in maintenance mode, you can&#8217;t be sure that you will have access to the traditional WordPress theme template tags or functions, such as bloginfo(&#8216;name&#8217;) or bloginfo(&#8216;description&#8217;) or theme &#8220;options&#8221; fields that configure the various aspects of a theme. So you&#8217;ll need to &#8220;hard code&#8221; your site name, description, the text that displays, the URL&#8217;s to image and links.</p>
<p>If you are good with HTML, you can code up whatever you&#8217;d like. However, the easiest way to do this is to install a theme that you like, configure it, display it in your browser and then &#8220;view source&#8221; to grab the HTML code. You&#8217;ll want to grab the full HTML from the top &lt;HTML&gt; tag through the bottom &lt;/HTML&gt; tag. This needs to be a fully-functional standalone HTML page. It really is just about that simple.</p>
<p>The only thing you need to do beyond grabbing the HTML code is to add the following to the maintenance.php file.</p>
<p>At the very top, add the following code. This code will tell the search engines that your site is only temporarily unavailable and to try back in 10 minutes.</p>
<p>&lt;?php<br />
/* DON&#8217;T CHANGE THIS &#8211; IT TELLS SEARCH ENGINES THE SITE IS ONLY TEMPORARILY UNAVAILABLE */<br />
$protocol = $_SERVER["SERVER_PROTOCOL"];<br />
if ( &#8216;HTTP/1.1&#8242; != $protocol &amp;&amp; &#8216;HTTP/1.0&#8242; != $protocol )<br />
   $protocol = &#8216;HTTP/1.0&#8242;;header( &#8220;$protocol 503 Service Unavailable&#8221;, true, 503 );<br />
header( &#8216;Content-Type: text/html; charset=utf-8&#8242; );<br />
header( &#8216;Retry-After: 600&#8242; );<br />
/* END DON&#8217;T CHANGE THIS */<br />
?&gt;</p>
<p>At the very bottom of the file, add the following line. Since WordPress is including this file into its program that handles the upgrade, its important that you tell WordPress to drop out of this section of the code when its done displaying this maintenance mode page.</p>
<p>&lt;?php<br />
/* DON&#8217;T CHANGE THIS &#8211; IT PASSES CONTROL BACK TO THE WORDPRESS UPGRADE ROUTINE */<br />
die();<br />
/* END DON&#8217;T CHANGE THIS */<br />
?&gt;</p>
<p>Here is a screenshot of the page that I&#8217;ve created for XtremelySocial.com.</p>
<p><a rel="attachment wp-att-2811" href="http://xtremelysocial.com/2010/how-to-make-an-awesome-maintenance-mode-screen-for-wordpress/xs_maint_680/"><img class="aligncenter size-full wp-image-2811" title="xs_maint_680" src="http://xtremelysocial.com/wp-content/uploads/2010/05/xs_maint_680.png" alt="" width="680" height="309" /></a></p>
<p>Here is a link to view the <a href="http://xtremelysocial.com/wp-content/maintenance.php">Maintenance Mode Screen</a> for XtremelySocial.com. You can cut and paste the HTML from that page if you&#8217;d like to use it as a starting point, but make sure you install the <a href="http://customtheme.com/themes/ice-breaker/" target="_blank">ice-breaker theme</a> from CustomTheme.com that it is based on. My page needs the images, and css from that theme to work.</p>
<p>There are some really great &#8220;under construction&#8221; WordPress themes that you can use to generate your initial HTML code and paste it into your maintenance.php file. Check out the article <a href="http://www.techcats.net/top-themes-plugins-for-under-construction-wordpress-blogs.html" target="_blank">Top Themes and Plugins for Under Construction WordPress Blogs</a> from techcats.net.</p>
<p><strong>Update 5/26/10:</strong> Note that this seems to only work in WordPress 3.0. Older versions don&#8217;t seem to handle automatically placing your site in maintenance mode properly. The code is there to do it, but it doesn&#8217;t seem to work. If anyone has a quick fix, let me know. If I find a fix I&#8217;ll post it here.</p>
<h3>Related Articles</h3><ol>
<li><a href='http://xtremelysocial.com/2010/how-to-create-a-popular-content-top-10-page-in-wordpress/' rel='bookmark' title='How to Create a Popular Content (Top 10) Page in WordPress'>How to Create a Popular Content (Top 10) Page in WordPress</a></li>
<li><a href='http://xtremelysocial.com/2010/11-must-have-plugins-for-every-wordpress-site/' rel='bookmark' title='11 Must-Have Plugins for Every WordPress Site'>11 Must-Have Plugins for Every WordPress Site</a></li>
<li><a href='http://xtremelysocial.com/2010/adding-a-facebook-invites-page-to-your-wordpress-site/' rel='bookmark' title='How To Allow Users To Invite Facebook Friends On Your WordPress Site'>How To Allow Users To Invite Facebook Friends On Your WordPress Site</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://xtremelysocial.com/2010/how-to-make-an-awesome-maintenance-mode-screen-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Create a Popular Content (Top 10) Page in WordPress</title>
		<link>http://xtremelysocial.com/2010/how-to-create-a-popular-content-top-10-page-in-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-create-a-popular-content-top-10-page-in-wordpress</link>
		<comments>http://xtremelysocial.com/2010/how-to-create-a-popular-content-top-10-page-in-wordpress/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 18:02:34 +0000</pubDate>
		<dc:creator>Tim Nicholson</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Our News]]></category>
		<category><![CDATA[Our WordPress Tips]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://xtremelysocial.com/?p=1860</guid>
		<description><![CDATA[This article will show you how to create a special page in WordPress that lists your most popular content. I had enhanced another plugin&#8217;s code to allow you to easily do this and he has already incorporated into the latest version! I have no idea why Wordpess doesn&#8217;t simply include the number of page views...]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-2081" href="http://xtremelysocial.com/2010/how-to-create-a-popular-content-top-10-page-in-wordpress/wp_logo-150x150/"><img class="alignleft size-full wp-image-2081" title="wp_logo-150x150" src="http://xtremelysocial.com/wp-content/uploads/2010/01/wp_logo-150x150.jpg" alt="Wordpress Logo" width="150" height="150" /></a>This article will show you how to create a special page in WordPress that lists your most popular content. I had enhanced another plugin&#8217;s code to allow you to easily do this and he has already incorporated into the latest version!</p>
<p>I have no idea why Wordpess doesn&#8217;t simply include the number of page views in the posts file, but it doesn&#8217;t. In order to track your page views in a way that you can actually access them, you need to use two different plugins. The good news is that if you acted upon my article <a href="http://xtremelysocial.com/2010/11-must-have-plugins-for-every-wordpress-site/"><strong><em>11 Must-Have Plugins for Every WordPress Site</em></strong></a>, then you already have them. If not, you&#8217;ll need to download both of these plugins:</p>
<p><a href="http://wordpress.org/extend/plugins/stats/">WordPress.com Stats Plugin</a><br />
<a href="http://wordpress.org/extend/plugins/wordpresscom-popular-posts/">WordPress.com Popular Posts Plugin</a></p>
<p>Since the original author has already included my updates, simply installing the plugin will allow you to create your popular posts page!</p>
<p>1. Create a new page in WordPress. Call it something like &#8220;Top 10 Posts&#8221; or &#8220;Our Most Popular Content&#8221; or something like that.</p>
<p>2. Insert the following shortcode into the page. This code creates a nice top 10 list, complete with title, number of views, excerpt, and its cached for performance. Just be SURE you paste this into the WP page in HTML or the editor will screw up the HTML formatting in the format= parameter.</p>
<ol class='wppp_list'>
	<li>&lt;a href="http://xtremelysocial.com/facebook/myinfo/" title="My Info on Facebook"&gt;My Info on Facebook&lt;/a&gt; (15,975 views)&lt;p&gt;My Info (formerly My Profile Box) -- Add a Custom Tab to your Facebook Business or Fan Page

My Info lets you place any HTML in a custom tab on your Facebook business or fan...&lt;/p&gt;</li>
	<li>&lt;a href="http://xtremelysocial.com/2010/adding-a-facebook-invites-page-to-your-wordpress-site/" title="How To Allow Users To Invite Facebook Friends On Your WordPress Site"&gt;How To Allow Users To Invite Facebook Friends On Your WordPress Site&lt;/a&gt; (13,203 views)&lt;p&gt;In my first article about Wordpress, I'll show you how to easily add a page to your Wordpress site that allows your users to invite their Facebook friends to check out your website.

You'll first...&lt;/p&gt;</li>
	<li>&lt;a href="http://xtremelysocial.com/2010/my-status-new-facebook-profile-publisher/" title="My Status: New Facebook Profile Publisher"&gt;My Status: New Facebook Profile Publisher&lt;/a&gt; (6,948 views)&lt;p&gt;I'm very excited to announce that you can now use My Status to update your Facebook and Twitter status from within the built-in Facebook profile publisher. My Status can now be used on your Facebook...&lt;/p&gt;</li>
	<li>&lt;a href="http://xtremelysocial.com/facebook/mygreetings/" title="My Greetings on Facebook"&gt;My Greetings on Facebook&lt;/a&gt; (6,294 views)&lt;p&gt;My Greetings (formerly WallPoke) - Share Mood ...&lt;/p&gt;</li>
	<li>&lt;a href="http://xtremelysocial.com/2010/smashing-magazine-100-free-high-quality-wordpress-themes-2010-edition/" title="Smashing Magazine: 100 Free High Quality WordPress Themes: 2010 Edition"&gt;Smashing Magazine: 100 Free High Quality WordPress Themes: 2010 Edition&lt;/a&gt; (5,901 views)&lt;p&gt;    It’s hard to believe that a year has passed since our last WordPress theme collection, but there you have it — the time has come again. Once a year we feature the most useful and interesting...&lt;/p&gt;</li>
	<li>&lt;a href="http://xtremelysocial.com/2009/facebook-roadmap-removing-profile-boxes/" title="Facebook Roadmap: Removing All Profile Boxes in Early January"&gt;Facebook Roadmap: Removing All Profile Boxes in Early January&lt;/a&gt; (5,034 views)&lt;p&gt;Back in October, Facebook published a "roadmap" of changes that would be taking place then through the beginning of 2010. We have posted articles on this here, but wanted to dig deeper into an area...&lt;/p&gt;</li>
	<li>&lt;a href="http://xtremelysocial.com/2010/mashable-10-cool-facebook-status-tips-and-tricks/" title="Mashable!: 10 Cool Facebook Status Tips and Tricks"&gt;Mashable!: 10 Cool Facebook Status Tips and Tricks&lt;/a&gt; (4,894 views)&lt;p&gt;With Facebook’s ever-changing layout, and the fact that other social sites are encroaching on its real-time update strangle-hold, it’s easy to forget that there are some pretty nifty tricks you...&lt;/p&gt;</li>
	<li>&lt;a href="http://xtremelysocial.com/2010/smashing-magazine-designing-a-facebook-fan-page-showcases-tutorials-resources/" title="Smashing Magazine: Designing A Facebook Fan Page: Showcases, Tutorials, Resources"&gt;Smashing Magazine: Designing A Facebook Fan Page: Showcases, Tutorials, Resources&lt;/a&gt; (4,825 views)&lt;p&gt;    Despite its privacy issues, Facebook clearly has a key role in global Internet activity. It has become a kind of universal social network, being used for both personal and business needs. For...&lt;/p&gt;</li>
	<li>&lt;a href="http://xtremelysocial.com/2009/my-info-how-to-show-off-your-facebook-page-on-your-personal-profile/" title="My Info: How to Show off your Facebook Page on your Personal Profile"&gt;My Info: How to Show off your Facebook Page on your Personal Profile&lt;/a&gt; (4,289 views)&lt;p&gt;Facebook recently rolled out a wizard for creating a profile badge to show off your Facebook page(s). Its an image-based badge that doesn't require javascript or iframes, so it works just fine in...&lt;/p&gt;</li>
</ol>

<p>If you want to make changes to any of the above suggested parameters to retrieve a different number of posts or display things differently, then check out the original author&#8217;s <a href="http://wordpress.org/extend/plugins/wordpresscom-popular-posts/faq/">WordPress Popular Posts Plugin FAQ</a>.</p>
<p>And how would this article be complete with showing you my most popular content? Here&#8217;s out list generated directly via the above shortcode.</p>
<h3>XtremelySocial.com Most Popular Content</h3>
<ol class='wppp_list'>
	<li><a title="My Info on Facebook" href="http://xtremelysocial.com/facebook/myinfo/">My Info on Facebook</a> (15,975 views)</p>
<p>My Info (formerly My Profile Box) -- Add a Custom Tab to your Facebook Business or Fan Page

My Info lets you place any HTML in a custom tab on your Facebook business or fan...</p>
<p></li>
	<li><a title="How To Allow Users To Invite Facebook Friends On Your WordPress Site" href="http://xtremelysocial.com/2010/adding-a-facebook-invites-page-to-your-wordpress-site/">How To Allow Users To Invite Facebook Friends On Your WordPress Site</a> (13,203 views)</p>
<p>In my first article about Wordpress, I'll show you how to easily add a page to your Wordpress site that allows your users to invite their Facebook friends to check out your website.

You'll first...</p>
<p></li>
	<li><a title="My Status: New Facebook Profile Publisher" href="http://xtremelysocial.com/2010/my-status-new-facebook-profile-publisher/">My Status: New Facebook Profile Publisher</a> (6,948 views)</p>
<p>I'm very excited to announce that you can now use My Status to update your Facebook and Twitter status from within the built-in Facebook profile publisher. My Status can now be used on your Facebook...</p>
<p></li>
	<li><a title="My Greetings on Facebook" href="http://xtremelysocial.com/facebook/mygreetings/">My Greetings on Facebook</a> (6,294 views)</p>
<p>My Greetings (formerly WallPoke) - Share Mood ...</p>
<p></li>
	<li><a title="Smashing Magazine: 100 Free High Quality WordPress Themes: 2010 Edition" href="http://xtremelysocial.com/2010/smashing-magazine-100-free-high-quality-wordpress-themes-2010-edition/">Smashing Magazine: 100 Free High Quality WordPress Themes: 2010 Edition</a> (5,901 views)</p>
<p>    It’s hard to believe that a year has passed since our last WordPress theme collection, but there you have it — the time has come again. Once a year we feature the most useful and interesting...</p>
<p></li>
	<li><a title="Facebook Roadmap: Removing All Profile Boxes in Early January" href="http://xtremelysocial.com/2009/facebook-roadmap-removing-profile-boxes/">Facebook Roadmap: Removing All Profile Boxes in Early January</a> (5,034 views)</p>
<p>Back in October, Facebook published a "roadmap" of changes that would be taking place then through the beginning of 2010. We have posted articles on this here, but wanted to dig deeper into an area...</p>
<p></li>
	<li><a title="Mashable!: 10 Cool Facebook Status Tips and Tricks" href="http://xtremelysocial.com/2010/mashable-10-cool-facebook-status-tips-and-tricks/">Mashable!: 10 Cool Facebook Status Tips and Tricks</a> (4,894 views)</p>
<p>With Facebook’s ever-changing layout, and the fact that other social sites are encroaching on its real-time update strangle-hold, it’s easy to forget that there are some pretty nifty tricks you...</p>
<p></li>
	<li><a title="Smashing Magazine: Designing A Facebook Fan Page: Showcases, Tutorials, Resources" href="http://xtremelysocial.com/2010/smashing-magazine-designing-a-facebook-fan-page-showcases-tutorials-resources/">Smashing Magazine: Designing A Facebook Fan Page: Showcases, Tutorials, Resources</a> (4,825 views)</p>
<p>    Despite its privacy issues, Facebook clearly has a key role in global Internet activity. It has become a kind of universal social network, being used for both personal and business needs. For...</p>
<p></li>
	<li><a title="My Info: How to Show off your Facebook Page on your Personal Profile" href="http://xtremelysocial.com/2009/my-info-how-to-show-off-your-facebook-page-on-your-personal-profile/">My Info: How to Show off your Facebook Page on your Personal Profile</a> (4,289 views)</p>
<p>Facebook recently rolled out a wizard for creating a profile badge to show off your Facebook page(s). Its an image-based badge that doesn't require javascript or iframes, so it works just fine in...</p>
<p></li>
</ol>

<h3>Related Articles</h3><ol>
<li><a href='http://xtremelysocial.com/2010/new2wp-create-jquery-tabs-for-wordpress-login-register-password-reset-forms/' rel='bookmark' title='New2Wp: Create jQuery Tabs For WordPress Login-Register-Password Reset Forms'>New2Wp: Create jQuery Tabs For WordPress Login-Register-Password Reset Forms</a></li>
<li><a href='http://xtremelysocial.com/2010/yoast-wordpress-to-lead-for-salesforce-crm/' rel='bookmark' title='Yoast: WordPress-to-Lead for Salesforce CRM'>Yoast: WordPress-to-Lead for Salesforce CRM</a></li>
<li><a href='http://xtremelysocial.com/2010/11-must-have-plugins-for-every-wordpress-site/' rel='bookmark' title='11 Must-Have Plugins for Every WordPress Site'>11 Must-Have Plugins for Every WordPress Site</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://xtremelysocial.com/2010/how-to-create-a-popular-content-top-10-page-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11 Must-Have Plugins for Every WordPress Site</title>
		<link>http://xtremelysocial.com/2010/11-must-have-plugins-for-every-wordpress-site/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=11-must-have-plugins-for-every-wordpress-site</link>
		<comments>http://xtremelysocial.com/2010/11-must-have-plugins-for-every-wordpress-site/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 19:53:39 +0000</pubDate>
		<dc:creator>Tim Nicholson</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Our News]]></category>
		<category><![CDATA[Our WordPress Tips]]></category>
		<category><![CDATA[Social News]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://xtremelysocial.com/?p=1803</guid>
		<description><![CDATA[Regardless of whether you are running a simple personal blog or using WordPress as a full-featured corporate content management system (CMS), you should seriously consider adding all of these plugins. These plugins help you control spam, optimize your site for search engines, track site visits and other metrics, allow you to display related posts throughout...]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-2081" href="http://xtremelysocial.com/2010/how-to-create-a-popular-content-top-10-page-in-wordpress/wp_logo-150x150/"><img class="alignleft size-full wp-image-2081" title="wp_logo-150x150" src="http://xtremelysocial.com/wp-content/uploads/2010/01/wp_logo-150x150.jpg" alt="Wordpress Logo" width="150" height="150" /></a>Regardless of whether you are running a simple personal blog or using WordPress as a full-featured corporate content management system (CMS), you should seriously consider adding all of these plugins.</p>
<p>These plugins help you control spam, optimize your site for search engines, track site visits and other metrics, allow you to display related posts throughout your site based on what each user is currently reading, provide a mobile optimized version of your site, allow users to join your site with the existing social networking and/or email ID&#8217;s, and more.</p>
<p><strong>1. <a href="http://wordpress.org/extend/plugins/add-to-any-subscribe/" target="_blank">Add to Any</a> &#8211; Add Social Networking Share and Email</strong></p>
<p>This plugin lets you easily add links for your users to share your articles on tons of social networking sites and through email. You can choose to highlight certain social networking sites and then have all the rest under a popup windows.</p>
<p><strong>2. <a href="http://wordpress.org/extend/plugins/akismet/" target="_blank">Akismet</a>  &#8211; Stop Comment SPAM</strong></p>
<p>Akismet checks your comments against the Akismet web service to see if they look like spam or not. You need a WordPress.com API key to use it. You can review the spam it catches under &#8220;Comments.&#8221;</p>
<p><strong>3. <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All in One SEO Pack</a> &#8211; Optimize Your Site for Search Engines</strong></p>
<p>Out-of-the-box SEO for your WordPress blog.</p>
<p>It allow you to change how the titles of your posts display, can automatically build meta descriptions and keywords based on the assigned categories and/or tags for your posts, and even lets you specifically set the post title, description, and keywords for individual posts or pages. It has some ther nice built-in SEO optimization tweaks as well.</p>
<p><strong>4. <a href="http://wordpress.org/extend/plugins/google-integration-toolkit/" target="_blank">Google Integration Toolkit</a> &#8211; Track Your Site Visits and Other Valuable Metrics</strong></p>
<p>Integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog.</p>
<p>This plugin adds the necessary Google Analytics code to your website. If you aren&#8217;t using that yet, you need to. Its the most comprehensive offering out there. It provides valuable insight into where your website traffic is coming from, how long people are staying on your site, what they are viewing and clicking on, etc.</p>
<p>It also supports Google Adsense ads, but I&#8217;m not using that feature on this site.</p>
<p><strong>5. <a href="http://wordpress.org/extend/plugins/nurelm-get-posts/" target="_blank">NuRelm Get Posts</a> &#8211; Show Related News Articles on your WordPress Pages</strong></p>
<p>Adds a shortcode tag &#91;get_posts&#93; to display a list of posts.</p>
<p>WordPress doesn&#8217;t have the ability to link page hierarchy to news article hierarchy. However, most WordPress sites would benefit from this. Most sites featuring products or services typically have related news categories for each of those products or services. Personal bloggers often do this as well in describing the various things they are passionate about. This is a very simple plugin that lets you specify a list of related posts on each of your pages.</p>
<p>For example, we have a WordPress page for each of our Facebook applications and also a related news category for each. With this plugin we can display related news articles for each individual Facebook application right on that applications feature page.</p>
<p><strong>6. <a href="http://wordpress.org/extend/plugins/subscribe-to-comments/" target="_blank">Subscribe To Comments</a> &#8211; Let Users Subscribe to Article Comments via Email</strong></p>
<p>Allows readers to receive notifications of new comments that are posted to an entry.</p>
<p>How many times have you gone to a website and commented on something and didn&#8217;t bother to go back and see additional comments that were made. This plugin solves that problem by letting your users subscribe to get email notifications when someone else comments on the same article.</p>
<p><strong>7. <a href="http://wordpress.org/extend/plugins/wordpresscom-popular-posts/" target="_blank">WordPress.com Popular Posts</a> &#8211; Show off your most Popular Articles</strong></p>
<p>Shows the most popular posts, using data collected by WordPress.com stats plugin.</p>
<p>Pretty much all WordPress sites, whether commercial or personal, typically have a handful of articles that are very popular and drive most the traffic to the site. Why not show these articles off to every person that looks at your site? This plugin will let you do just that. On this website, we display popular content in our footer, but you can place it in your sidebar if you want.</p>
<p><strong>8. <a href="http://wordpress.org/extend/plugins/stats/" target="_blank">WordPress.com Stats</a> &#8211; Track Site Visits and Other Metrics Without Leaving WordPress</strong></p>
<p>Tracks views, post/page views, referrers, and clicks. Requires a WordPress.com API key.</p>
<p>You might be asking why I&#8217;m recommending this after the rave review of Google Analytics above. Well, the reason is because this plugin works right in your WordPress dashboard for immediate viewing of your popular articles, search terms, etc. Its also required for the plugin above that shows popular posts.</p>
<p><strong>9. <a href="http://wordpress.org/extend/plugins/wordpress-mobile-edition/" target="_blank">WordPress Mobile Edition</a> &#8211; Optimize your Site for Cell Phones and Touch Phones</strong></p>
<p>Show your mobile visitors a site presentation designed just for them. Rich experience for iPhone, Android, etc. and clean simple formatting for less capable mobile browsers. Cache-friendly with a Carrington-based theme, and progressive enhancement for advanced mobile browsers.</p>
<p>Mobile web browsing is close to exceeding desktop web browsing these days and your full WordPress site will be slow and look like garbage on a cell phone. This particular plugin even shows an optimized version for touch phones, like the iPhone, Blackberry Storm, and Andriod devices.</p>
<p><strong>10. <a href="http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/" target="_blank">Yet Another Related Posts Plugin</a></strong></p>
<p>Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. A templating feature allows customization of the display.</p>
<p>Its definitely a best-practice to display related articles to the user currently reading one of your articles. The better the matching logic, the more likely the list of articles will be interesting to that reader. This plugin does a great job of matching articles and it also uses a caching system for top performance.</p>
<p><strong>11. Login with Social Networking ID&#8217;s &#8211; <a href="http://wordpress.org/extend/plugins/gigya-socialize-for-wordpress/" target="_blank">Gigya Socialize</a> or <a href="http://wordpress.org/extend/plugins/rpx/" target="_blank">JanRain RPX</a></strong></p>
<p>Since this article specifically is my list of plugins that I think every WordPress site should have, I&#8217;m recommending one of these plugins so that your users don&#8217;t need to sign up directly for &#8220;yet another site&#8221;.</p>
<p>Both of these plugins support logging in with Google, Facebook, MySpace, Twitter, and tons of other social networking and email sites. Both work quite well and will significantly increase the number of registered users on your site. I prefer the Gigya plugin, but really only because it has more advanced Facebook Connect capability than RPX and lets developers do more with the data should we chose.</p>
<p><strong>12. &#8220;Bonus Plugin&#8221; &#8212; <a href="http://xtremelysocial.com/2010/adding-a-facebook-invites-page-to-your-wordpress-site/" target="_self">XtremelySocial Facebook Invitations Theme Template</a></strong></p>
<p>If you are using Gigya (or any other plugin that support Facebook Connect features), you can have a nice page that lets users invite their Facebook friends to your site. Please check our our article, <a title="Permanent Link to How To Allow Users To Invite Facebook Friends On Your WordPress Site" rel="bookmark" href="http://xtremelysocial.com/2010/adding-a-facebook-invites-page-to-your-wordpress-site/"><em><strong>How To Allow Users To Invite Facebook Friends On Your WordPress Site</strong></em></a>. Its easy to install and won&#8217;t tax your server. Please note that RPX does not support true Facebook Connect features, so this won&#8217;t work with that.</p>
<p><strong>Future Article: Add Social Networking Capabilities to Your WordPress Site</strong></p>
<p>We will be covering plugins for more full-featured social networking functionality in a separate article. If you are chomping at the bit for this right now, here are a few plugins worth taking a look at:</p>
<ul>
<li><a href="http://www.sociable.es/facebook-connect-wordpress-plugin-20/" target="_blank">Facebook Connect WordPress Plugin by Socialable.es</a></li>
<li><a href="http://wordpress.org/extend/plugins/wp-facebookconnect/" target="_blank">WordPress Facebook Connect Plugin</a> unofficially developed by one of the Facebook Developers</li>
<li><a href="http://mu.wordpress.org/" target="_blank">WordPress Multi-User (MU)</a> with <a href="http://wordpress.org/extend/plugins/buddypress/" target="_blank">BuddyPress</a> &#8211; Adds full-on social networking and community features</li>
<li><a href="http://wordpress.org/extend/plugins/mingle/" target="_blank">Mingle</a> - Adds social networking features such as friends and activity streams to your site, but does provide login capability using Facebook or other social network ID&#8217;s. </li>
</ul>
<p>I&#8217;m using a pretty heavily modified version of the Sociables.es plugin as it was the most comprehensive framework to start with. I tweaked the main code quite a bit and added full modules for displaying a user&#8217;s entire news stream/wall and displaying a list of all of a user&#8217;s Facebook friends. I&#8217;m trying to work with the developer to roll some of this functionality into his plugin or to work in logic that let&#8217;s myself and others add functionality to the plugin.</p>
<h3>Related Articles</h3><ol>
<li><a href='http://xtremelysocial.com/2010/yoast-wordpress-to-lead-for-salesforce-crm/' rel='bookmark' title='Yoast: WordPress-to-Lead for Salesforce CRM'>Yoast: WordPress-to-Lead for Salesforce CRM</a></li>
<li><a href='http://xtremelysocial.com/2010/10-must-have-facebook-plugins-for-wordpress/' rel='bookmark' title='10 Must Have Facebook Plugins For WordPress'>10 Must Have Facebook Plugins For WordPress</a></li>
<li><a href='http://xtremelysocial.com/2010/how-to-create-a-popular-content-top-10-page-in-wordpress/' rel='bookmark' title='How to Create a Popular Content (Top 10) Page in WordPress'>How to Create a Popular Content (Top 10) Page in WordPress</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://xtremelysocial.com/2010/11-must-have-plugins-for-every-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To Allow Users To Invite Facebook Friends On Your WordPress Site</title>
		<link>http://xtremelysocial.com/2010/adding-a-facebook-invites-page-to-your-wordpress-site/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adding-a-facebook-invites-page-to-your-wordpress-site</link>
		<comments>http://xtremelysocial.com/2010/adding-a-facebook-invites-page-to-your-wordpress-site/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 22:23:50 +0000</pubDate>
		<dc:creator>Tim Nicholson</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Our News]]></category>
		<category><![CDATA[Our WordPress Tips]]></category>
		<category><![CDATA[Social News]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://xtremelysocial.com/?p=1723</guid>
		<description><![CDATA[In my first article about WordPress, I&#8217;ll show you how to easily add a page to your WordPress site that allows your users to invite their Facebook friends to check out your website. You&#8217;ll first need to have Facebook Connect up and running on your site. More on that later. What I did was make a...]]></description>
			<content:encoded><![CDATA[<p><a href="http://xtremelysocial.com/2010/how-to-create-a-popular-content-top-10-page-in-wordpress/wp_logo-150x150/" rel="attachment wp-att-2081"><img src="http://xtremelysocial.com/wp-content/uploads/2010/01/wp_logo-150x150.jpg" alt="Wordpress Logo" title="wp_logo-150x150" width="150" height="150" class="alignleft size-full wp-image-2081" /></a>In my first article about WordPress, I&#8217;ll show you how to easily add a page to your WordPress site that allows your users to invite their Facebook friends to check out your website.</p>
<p>You&#8217;ll first need to have Facebook Connect up and running on your site. More on that later.</p>
<p>What I did was make a WordPress Theme Template that will display the Facebook Invitation screen, complete with a friend selection box. It automatically pulls your website name, URL, and description to populate the Facebook invitation fields.</p>
<p>The reason I made this a theme template instead of a plugin, is because plugins are generally slow. WordPress loads all the code for the plugin on each page, whether the code is needed or not. This takes up valuable memory. Plus, the plugin gets called every time a page load, further cuasing overhead. With a theme template, nothing is loaded until the specific page that needs it is accessed. Some other advantages of this method are: it will automatically show your invite friends link in your page navigation, it will show up in the search engines, and it will show up in your WordPress site search as well.</p>
<p>To use the theme template, simply upload the template file (<span class="attachment"><a title="page-fbinvites.php" href="http://xtremelysocial.com/wp-content/uploads/2010/01/page-fbinvites.zip">page-fbinvites.php</a></span>) to your theme directory, then create a new page in WordPress and select &#8220;Page &#8211; Facebook Invites&#8221; as the Template.</p>
<p>It should work just fine for standard themes that have a header, sidebar, and footer. You must already have a Facebook connect plugin working on your site, though.</p>
<p><a rel="attachment wp-att-1772" href="http://xtremelysocial.com/2010/adding-a-facebook-invites-page-to-your-wordpress-site/invite_fbfriends/"><img class="aligncenter size-full wp-image-1772" title="invite_fbfriends" src="http://xtremelysocial.com/wp-content/uploads/2010/01/invite_fbfriends.png" alt="" width="477" height="346" /></a></p>
<p>The original plugin built by a programmer at Facebook is called <a title="WP-FacebookConnect" href="http://wordpress.org/extend/plugins/wp-facebookconnect/" target="_blank">WP-FacebookConnect</a>.  It allows your users to log in with Facebook and uses Facebook profile pictures automatically on comments. It also lets your users optionally post their site comments back to their Facebook profile.</p>
<p>The plugin that I&#8217;m using on this site is the <a href="http://www.sociable.es/facebook-connect-wordpress-plugin-20/" target="_blank">Sociable.es Facebook Connect WordPress Plugin</a>. It is more robust than the plugin above as it adds a nice widget to show recent visitors, your Facebook friends that use the site, and your friend&#8217;s site comments. I have further modified it to show the full Facebook stream (your home page or your friend&#8217;s wall) and to also show a full list of all your Facebook friends regardless of whether they use the site or not. I&#8217;ve reached out the original developer to see about rolling these enhancements into his plugin.</p>
<p>One thing to be careful of, though, with both of the above plugins: If you already have a large number of users, make sure they log in to your site first before connecting with Facebook or they will get a completely new user ID created on your site.</p>
<p>There are many other Facebook plugins for WordPress, so you might want to just <a href="http://wordpress.org/extend/plugins/search.php/page/2?q=facebook+connect">search for some in the plugin directory</a>. Please let us know if you find a particularly interesting one.</p>
<p>I&#8217;d like to thank Adam over at <a href="http://www.intafuse.com/">http://www.intafuse.com/</a> for asking me to help get this working on his site. It motivated me to build the theme template as the easiest way to handle this.</p>
<p>If you&#8217;d like to help me out, please just spread the word about my Facebook Applications and the XtremelySocial.com website. Or maybe you might be able to help me one day with some WordPress stuff. I&#8217;ve had people ask how they could donate money to help pay for my dedicated webserver, so I finally set up an easy way to donate with Paypal.</p>
<div>
<form action="https://www.paypal.com/cgi-bin/webscr" enctype="application/x-www-form-urlencoded" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="11205119" />
<input alt="PayPal - The safer, easier way to pay online!" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /></p>
<p>I also plan on writing more useful WordPress articles. Its a great blogging and Content Management System and I&#8217;ve learned quite a bit in building this site that I&#8217;d love to share with everyone.</p>
</form>
</div>
<h3>Related Articles</h3><ol>
<li><a href='http://xtremelysocial.com/2011/mashable-how-to-integrate-google-into-your-wordpress-site-2/' rel='bookmark' title='Mashable!: HOW TO: Integrate Google+ Into Your WordPress Site'>Mashable!: HOW TO: Integrate Google+ Into Your WordPress Site</a></li>
<li><a href='http://xtremelysocial.com/2010/yoast-wordpress-to-lead-for-salesforce-crm/' rel='bookmark' title='Yoast: WordPress-to-Lead for Salesforce CRM'>Yoast: WordPress-to-Lead for Salesforce CRM</a></li>
<li><a href='http://xtremelysocial.com/2010/sociable-facebook-opengraph-wordpress-plugin-configuration/' rel='bookmark' title='Sociable!: Facebook OpenGraph WordPress Plugin Configuration'>Sociable!: Facebook OpenGraph WordPress Plugin Configuration</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://xtremelysocial.com/2010/adding-a-facebook-invites-page-to-your-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>

