<?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>Pressography &#187; Tutorials</title>
	<atom:link href="http://pressography.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://pressography.com</link>
	<description>The Art Of Customizing Wordpress</description>
	<lastBuildDate>Fri, 10 Sep 2010 20:52:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Daily Tip: Quick Shortcode to Add a PayPal Donation Link to Any WordPress Post or Page</title>
		<link>http://pressography.com/wordpress/daily-tip-quick-shortcode-to-add-a-paypal-donation-link-to-any-wordpress-post-or-page/</link>
		<comments>http://pressography.com/wordpress/daily-tip-quick-shortcode-to-add-a-paypal-donation-link-to-any-wordpress-post-or-page/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 20:52:54 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Daily Tip]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[Paypal]]></category>
		<category><![CDATA[paypal donation]]></category>
		<category><![CDATA[wordpress donation shortcode]]></category>
		<category><![CDATA[wordpress paypal shortcode]]></category>
		<category><![CDATA[wordpress single user]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=38662</guid>
		<description><![CDATA[This is a really useful function that will allow you to use a shortcode to easily add a donation link as you&#8217;re writing a post. If you often take donations, add this to your theme&#8217;s functions.php file to make the shortcode available for use at any time: function donate_shortcode( $atts ) { extract(shortcode_atts(array( 'text' =&#062; [...]]]></description>
			<content:encoded><![CDATA[<p>This is a really useful function that will allow you to use a shortcode to easily add a donation link as you&#8217;re writing a post.  If you often take donations, add this to your theme&#8217;s <i>functions.php</i> file to make the shortcode available for use at any time: </p>
<pre class="php"><span class="phpFunctionKeyword">function</span> donate_shortcode<span class="phpOperator">(</span> $atts <span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpFunction">extract</span><span class="phpOperator">(</span>shortcode_atts<span class="phpOperator">(</span><span class="phpFunction">array</span><span class="phpOperator">(</span>
<span class="phpString">'text'</span> <span class="phpOperator"><span class="phpOperator">=</span><span class="phpOperator">&gt;</span></span> <span class="phpString">'Make a donation'</span>,
<span class="phpString">'account'</span> <span class="phpOperator"><span class="phpOperator">=</span><span class="phpOperator">&gt;</span></span> <span class="phpString">'REPLACE ME'</span>,
<span class="phpString"><span class="phpKeyword">'for'</span></span> <span class="phpOperator"><span class="phpOperator">=</span><span class="phpOperator">&gt;</span></span> <span class="phpString">''</span>,
<span class="phpOperator">)</span>, $atts<span class="phpOperator">)</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpKeyword">
global </span>$post;
<span class="phpKeyword">
if </span><span class="phpOperator">(</span><span class="phpOperator">!</span>$for<span class="phpOperator">)</span> $for <span class="phpOperator">=</span> <span class="phpFunction">str_replace</span><span class="phpOperator">(</span><span class="phpString">" "</span>,<span class="phpString">" "</span>,$post<span class="phpOperator">-<span class="phpOperator">&gt;</span></span>post_title<span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpKeyword">
return </span><span class="phpString">'<span class="phpOperator">&lt;</span>a class=<span class="phpString">"donateLink"</span> href=<span class="phpString">"https<span class="phpOperator">:</span><span class="phpComment"><span class="phpComment">//www<span class="phpOperator">.</span>paypal<span class="phpOperator">.</span>com/cgi-bin/webscr<span class="phpOperator">?</span>cmd<span class="phpOperator">=</span>_xclick&#038;amp<span class="phpText">;</span>business='</span>.$account.<span class="phpString">'&#038;amp<span class="phpText">;</span>item_name=Donation<span class="phpKeyword"> for </span>'</span>.$for.<span class="phpString">'"</span></span><span class="phpOperator">&gt;</span>'</span>.$text.<span class="phpString">'<span class="phpOperator">&lt;</span>/a<span class="phpOperator">&gt;</span>'</span><span class="phpText">;</span>
</span>
<span class="phpOperator">}</span>
add_shortcode<span class="phpOperator">(</span><span class="phpString">'donate'</span>, <span class="phpString">'donate_shortcode'</span><span class="phpOperator">)</span><span class="phpText">;</span></pre>
<p>You can replace the text with your own and also replace the account section with your PayPal email address.  Now when you&#8217;re writing a page or post, you can add the shortcode:</p>
<pre>
[donate]
</pre>
<p>You&#8217;ll get a link automatically added to your post, as shown below:<br />
<a href="http://wpmu.org/wp-content/uploads/2010/09/donation.png" title="donation" rel="lightbox[38662]"><img src="http://wpmu.org/wp-content/uploads/2010/09/donation.png" alt="" title="donation" width="611" height="202" class="aligncenter size-full wp-image-38663" /></a></p>
<div style="clear: both; width: 640px; height: 15px;"></div>
<p style="font-size: 11px;">Source: <a href="http://blog.themeforest.net/wordpress/9-useful-snippets-for-your-wordpress-functions/" >ThemeForest.net</a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+Quick+Shortcode+to+Add+a+PayPal+Donation+Link+to+Any+WordPress+Post+or+Page+http://t7ozt.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+Quick+Shortcode+to+Add+a+PayPal+Donation+Link+to+Any+WordPress+Post+or+Page+http://t7ozt.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/wordpress/daily-tip-quick-shortcode-to-add-a-paypal-donation-link-to-any-wordpress-post-or-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Free or Paid Membership Site with WordPress and the Membership Plugin</title>
		<link>http://pressography.com/plugins/how-to-create-a-free-or-paid-membership-site-with-wordpress-and-the-membership-plugin/</link>
		<comments>http://pressography.com/plugins/how-to-create-a-free-or-paid-membership-site-with-wordpress-and-the-membership-plugin/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 14:00:22 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Free Plugins]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[buddypress membership site]]></category>
		<category><![CDATA[buddypress subscription site]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[membership plugin]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[multisite network]]></category>
		<category><![CDATA[User support material]]></category>
		<category><![CDATA[wordpress download subscription]]></category>
		<category><![CDATA[wordpress membership site]]></category>
		<category><![CDATA[wordpress single user]]></category>
		<category><![CDATA[wordpress subscription site]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=38615</guid>
		<description><![CDATA[Earlier this week we released Membership 1.0, a plugin that allows you to transform your WordPress site into a fully functional membership site. In case you missed it, you can check out a full introduction to the plugin&#8217;s features, or download it at the WordPress repository and give it a test drive. We&#8217;re going to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wp-content/uploads/2010/09/menu.png" title="menu" rel="lightbox[38615]"><img src="http://wpmu.org/wp-content/uploads/2010/09/menu.png" alt="" title="menu" width="156" height="174" class="alignleft size-full wp-image-38619" /></a>Earlier this week we released <a href="http://premium.wpmudev.org/project/membership" >Membership 1.0</a>, a plugin that allows you to transform your WordPress site into a fully functional membership site. In case you missed it, you can check out a <a href="http://wpmu.org/monetize-your-members-powerful-membership-plugin-delivers-custom-subscription-solutions-for-wordpress-multisite-and-buddypress/" >full introduction</a> to the plugin&#8217;s features, or <a href="http://wordpress.org/extend/plugins/membership/" >download</a> it at the WordPress repository and give it a test drive.  We&#8217;re going to show you how you can use this plugin to build any kind of awesome membership site that you can envision. </p>
<h2>Set Up Your Membership Site in Minutes!</h2>
<p>Let&#8217;s start with a simple example of building a site that offers downloads for users who purchase a subscription. This process is the same, whether you&#8217;re using WordPress single user, Multisite or BuddyPress. This process is also very similar for creating a members-only support area for your clients or customers to access, or a members-only news site. When you&#8217;re using the Membership plugin to build a simple members site, everything you need for customizing it should be available through the drag and drop dashboard interface.</p>
<h2>Step 1:  Download and Install <a href="http://wordpress.org/extend/plugins/membership/" >Membership Lite</a></h2>
<p>Activate the plugin. When you go to the Membership menus you&#8217;ll notice that it is deactivated by default.  You&#8217;ll want to leave it this way until you&#8217;ve configured your options.</p>
<h2>Step 2: Create a Membership Level for Access to Content</h2>
<p>Go to <b>Membership >> Edit Levels</b> and create a new one for your members-only content.</p>
<p>Depending on where the content is that you want to restrict, you&#8217;ll basically just drag and drop rules into the <b>Positive rules</b> section.<br />
<a href="http://wpmu.org/wp-content/uploads/2010/09/downloadpage.png" title="downloadpage" rel="lightbox[38615]"><img src="http://wpmu.org/wp-content/uploads/2010/09/downloadpage.png" alt="" title="downloadpage" width="580" height="304" class="aligncenter size-full wp-image-38625" /></a></p>
<div style="clear: both; width: 640px; height: 4px;"></div>
<p>You may discover that you need to organize your content a little bit. If you have downloads located in posts only, make sure that they all share a set category, such as &#8220;downloads&#8221; or &#8220;members.&#8221;  Another option is to put the content you want to restrict only on certain pages. You could also restrict an entire menu of downloads, so that a whole row of menu items are available for members who have access to downloads. </p>
<p>The most secure way to restrict downloadable content to members would be to drag and drop downloads into the positive rules and create restricted groups within your media library. First go to <b>Membership >> Edit Options</b> and scroll down to <b>Downloads/Media Protection</b>. Add as many groups names as you wish and click save.  Now, each item in the media library will have a dropdown box containing the groups you&#8217;ve created. Assign the item to a <b>&#8220;Protected content group&#8221;</b> and they will not be available to normal users.  Go back to your membership level and make sure all these groups are checked. </p>
<p>If you already have a lot of content, then organizing it may take the most time. If your content is already well-categorized, paged, grouped, etc, then assigning the positive rules should only take you a minute or two to complete. </p>
<h2>Step 3: Activate the Membership Level You Created</h2>
<p>This step is fairly easy to miss, but very necessary. Go to <b>Edit Levels</b> and activate the level you created, as shown below:</p>
<p><a href="http://wpmu.org/wp-content/uploads/2010/09/activate.jpg" title="activate" rel="lightbox[38615]"><img src="http://wpmu.org/wp-content/uploads/2010/09/activate.jpg" alt="" title="activate" width="596" height="179" class="aligncenter size-full wp-image-38628" /></a></p>
<div style="clear: both; width: 640px; height: 3px;"></div>
<h2>Step 4: Assign the Stranger Level in Membership >> Edit Options Panel</h2>
<p>The stranger level refers to a visitor to your website who is either not logged in or does not have an active membership or subscription to your website.  You&#8217;ll need to create a level for strangers or they will not have access to any content whatsoever. </p>
<h2>Step 5: Create a New Subscription</h2>
<p>Go to <b>Edit Subscriptions</b> and create a new one. Drag and drop your membership level into the subscription and then set the mode, period, and price. Click save!  </p>
<h2>Step 6: Add Subscriptions to Your Registration Page</h2>
<p>You can do this by using the shortcode included with the plugin and assigning the page where you place it. That way, you&#8217;ll be able to get users assigned to the correct subscription at registration. In this case, the Membership plugin will handle your registration form.  </p>
<h2>Step 7: Make Sure to Enable the Membership Plugin in the Membership Dashboard</h2>
<p>This turns everything on so that you can smoothly incorporate your membership options after all of your settings have been customized for your website.</p>
<h4>Making the Most of the Membership Plugin:</h4>
<p>1. Create a &#8220;No Access&#8221; page, which you can set for the users to see if they have not purchased a membership.  Consider this page a powerful sales opportunity to present the option of membership.</p>
<p>2. Make sure to set up a strong Registration page. When you use the shortcode to add subscriptions to the registration page, you will have the opportunity to further sell your memberships on this page.</p>
<p>As you can see, it&#8217;s fairly easy to set up a simple membership site. You can probably do it in under ten minutes. What takes the most time is figuring out how you want to structure your content access, given the unlimited number of options available with this plugin!  </p>
<p>For more information on the specifics of these steps, please refer to the <a href="http://premium.wpmudev.org/project/membership/installation/" >Membership plugin installation guide</a>.  Professional support is available for this powerful plugin when you purchase the <a href="http://premium.wpmudev.org/project/membership" >Pro version</a>, as well as unlimited membership and subscription levels, and a large number of BuddyPress integration options. </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=How+to+Create+a+Free+or+Paid+Membership+Site+with+WordPress+and+the+Membership+Plugin+http://twae2.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=How+to+Create+a+Free+or+Paid+Membership+Site+with+WordPress+and+the+Membership+Plugin+http://twae2.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/plugins/how-to-create-a-free-or-paid-membership-site-with-wordpress-and-the-membership-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spice Up Your WordPress Theme with Special Effects on Post Images</title>
		<link>http://pressography.com/wordpress/spice-up-your-wordpress-theme-with-special-effects-on-post-images/</link>
		<comments>http://pressography.com/wordpress/spice-up-your-wordpress-theme-with-special-effects-on-post-images/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 14:00:16 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Free Plugins]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[get post image]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[image effects]]></category>
		<category><![CDATA[phpthumb library]]></category>
		<category><![CDATA[post image]]></category>
		<category><![CDATA[post image drop shadow]]></category>
		<category><![CDATA[post image watermark]]></category>
		<category><![CDATA[wordpress image masking]]></category>
		<category><![CDATA[wordpress php image plugin]]></category>
		<category><![CDATA[wordpress single user]]></category>
		<category><![CDATA[wordpress theme development]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=38558</guid>
		<description><![CDATA[Does your WordPress theme need a little face lift? Want to make your site stand out from all the cookie cutter blog themes? We&#8217;re going to explore a tool today that will make it easy for you to put a little spark into your post images. A new plugin called Get Post Image is packed [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wp-content/uploads/2010/09/synfig_icon.png" title="synfig_icon" rel="lightbox[38558]"><img src="http://wpmu.org/wp-content/uploads/2010/09/synfig_icon.png" alt="" title="synfig_icon" width="128" height="128" class="alignleft size-full wp-image-38568" /></a>Does your WordPress theme need a little face lift?  Want to make your site stand out from all the cookie cutter blog themes?  We&#8217;re going to explore a tool today that will make it easy for you to put a little spark into your post images.</p>
<p>A new plugin called <a href="http://wordpress.org/extend/plugins/get-post-image/" >Get Post Image</a> is packed full of special effects that you can use in your WordPress theme, including thumbnailing, formatting, masks, and logo insertion, and many more advanced features. Get Post Image is a wrapper for <a href="http://wordpress.org/extend/plugins/get-the-image/" >Get The Image</a> WordPress plugin and phpThumb library. It&#8217;s easy one to overlook in the repository, because it has a simple name and no screenshots. However, if you visit the plugin&#8217;s homepage, you can see all of the exciting options it offers.</p>
<p>Some of the most impressive features include automatic saturation, brightness, and color adjustments, horizontal and vertical flipping, rounded corners, drop shadows, rotation and watermarking.  </p>
<p>For example, let&#8217;s say you want to have all of your theme&#8217;s post thumbnails be rounded, you can add this using a simple tag:</p>
<p><a href="http://wpmu.org/wp-content/uploads/2010/09/rounded.png" title="rounded" rel="lightbox[38558]"><img src="http://wpmu.org/wp-content/uploads/2010/09/rounded.png" alt="" title="rounded" width="211" height="208" class="alignleft size-full wp-image-38559" /></a></p>
<pre class="php"><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> get_post_image </span><span class="phpOperator">(</span><span class="phpString">'w<span class="phpOperator">=</span>200&#038;amp<span class="phpText">;</span>zc=<span class="phpNumber">1</span>&#038;amp<span class="phpText">;</span><span class="htmlText">fltr</span><span class="phpOperator">[</span><span class="phpOperator">]</span><span class="phpOperator">=</span><span class="htmlText">ric</span><span class="phpOperator">|</span><span class="htmlText">100</span><span class="phpOperator">|</span>100'</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span></pre>
<p>You can actually display images of any shape by creating a mask and referencing it in your tag, which would result in something like this:<br />
<div id="attachment_38560" class="wp-caption alignleft" style="width: 229px"><a href="http://wpmu.org/wp-content/uploads/2010/09/mask.png" title="mask" rel="lightbox[38558]"><img src="http://wpmu.org/wp-content/uploads/2010/09/mask.png" alt="" title="mask" width="219" height="216" class="size-full wp-image-38560" /></a><p class="wp-caption-text">Create a Shape Mask</p></div> <div id="attachment_38561" class="wp-caption alignleft" style="width: 226px"><a href="http://wpmu.org/wp-content/uploads/2010/09/result.png" title="result" rel="lightbox[38558]"><img src="http://wpmu.org/wp-content/uploads/2010/09/result.png" alt="" title="result" width="216" height="210" class="size-full wp-image-38561" /></a><p class="wp-caption-text">The end result</p></div></p>
<div style="clear: both; width: 640px; height: 15px;"></div>
<pre class="php"><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> get_post_image </span><span class="phpOperator">(</span><span class="phpString">'w<span class="phpOperator">=</span>200&#038;amp<span class="phpText">;</span>zc=<span class="phpNumber">1</span>&#038;amp<span class="phpText">;</span><span class="htmlText">fltr</span><span class="phpOperator">[</span><span class="phpOperator">]</span><span class="phpOperator">=</span><span class="htmlText">mask</span><span class="phpOperator">|</span>'</span>.STYLESHEETPATH<span class="phpOperator">.</span><span class="phpString">'/images/camel-logo-bw<span class="phpOperator">.</span>png&#038;amp<span class="phpText">;</span>f=png'</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span></pre>
<h2>How to Get Special Effects on Post Images</h2>
<h4>Step 1: Download and install Get The Image Plugin</h4>
<p><a href="http://wordpress.org/extend/plugins/get-the-image" >http://wordpress.org/extend/plugins/get-the-image</a></p>
<h4>Step 2: Download and install Get Post Image Plugin</h4>
<p><a href="http://wordpress.org/extend/plugins/get-post-image/" >http://wordpress.org/extend/plugins/get-post-image/</a></p>
<h4>Step 3: Add the Tags to Your Theme</h4>
<p>This plugin works mainly around the <b>get_post_image()</b> function and it <b>must</b> be used inside the <a href="http://codex.wordpress.org/The_Loop" >loop</a>. </p>
<p>Depending on what kind of effects you want to use, you&#8217;ll need to grab a tag similar to the examples in this post or create your own. You can see example tags at the plugin&#8217;s <a href="http://vinicius.soylocoporti.org.br/get-post-image-wordpress-plugin/" >homepage</a>. There are also many more examples on <a href="http://phpthumb.sourceforge.net/demo/demo/phpThumb.demo.demo.php" >phpThumb Demo page</a>.  Use your imagination to make your WordPress theme stand out and have fun!</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Spice+Up+Your+WordPress+Theme+with+Special+Effects+on+Post+Images+http://m8q62.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Spice+Up+Your+WordPress+Theme+with+Special+Effects+on+Post+Images+http://m8q62.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/wordpress/spice-up-your-wordpress-theme-with-special-effects-on-post-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Login With Google Friend Connect to Your WordPress Site</title>
		<link>http://pressography.com/wordpress/news/how-to-add-login-with-google-friend-connect-to-your-wordpress-site/</link>
		<comments>http://pressography.com/wordpress/news/how-to-add-login-with-google-friend-connect-to-your-wordpress-site/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 14:00:27 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[google connect]]></category>
		<category><![CDATA[google friendconnect]]></category>
		<category><![CDATA[google ID]]></category>
		<category><![CDATA[google login for wordpress]]></category>
		<category><![CDATA[google login plugin]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[wordpress login plugin]]></category>
		<category><![CDATA[wordpress single user]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=38390</guid>
		<description><![CDATA[According to new data from janrain.com, more people prefer to log in to sites across the web using a Google ID. Google is far and away the clear winner over Facebook and all other 3rd party services, coming in just under 40%. Why allow users to authenticate with Google? A quick look at the overall [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wp-content/uploads/2010/09/googlefriendconnect.jpg" title="googlefriendconnect" rel="lightbox[38390]"><img src="http://wpmu.org/wp-content/uploads/2010/09/googlefriendconnect-150x150.jpg" alt="" title="googlefriendconnect" width="150" height="150" class="alignleft size-thumbnail wp-image-38410" /></a>According to new <a href="http://www.janrain.com/blogs/measuring-popularity-social-media-platforms-across-web" >data from janrain.com</a>, more people prefer to log in to sites across the web using a Google ID. Google is far and away the clear winner over Facebook and all other 3rd party services, coming in just under 40%.  </p>
<h2>Why allow users to authenticate with Google?</h2>
<p>A quick look at the overall numbers will demonstrate the benefits of including Google login options on your site: </p>
<p><a href="http://wpmu.org/wp-content/uploads/2010/09/sign-in-preferences-janrain-customers-scaled.jpg" title="sign-in-preferences-janrain-customers-scaled" rel="lightbox[38390]"><img src="http://wpmu.org/wp-content/uploads/2010/09/sign-in-preferences-janrain-customers-scaled.jpg" alt="" title="sign-in-preferences-janrain-customers-scaled" width="650" height="472" class="aligncenter size-full wp-image-38416" /></a></p>
<p>Many Google users are already logged into Google services when they visit your site, so when they see the friendly Google icon, logging in feels convenient. This causes the user to be far more likely to comment and interact with your content.</p>
<p>Depending on what kind of site you have, you may find that your visitors prefer to log in with one 3rd party service over another. This is an important consideration. For example, in general the numbers seem to show that if you&#8217;re running a news media site, then Yahoo or Facebook login options might server you better. </p>
<p>If you&#8217;re not sure how your visitors would prefer to log in, you might consider offering a poll. Based on the results you receive, you&#8217;ll be able to select a plugin accordingly. Most general WordPress sites will benefit from following the steps below, to let users authenticate with their Google IDs.</p>
<h2>Step 1: Install the FriendConnect Login Plugin and configure it at Settings >> FriendConnect Login</h2>
<p>You can <a href="http://wordpress.org/extend/plugins/friendconnect-login/" >download</a> this plugin from the WordPress repository. You&#8217;ll need to get a <a href="http://www.google.com/friendconnect/" >Google Connect Site ID</a>, if you don&#8217;t already have one. Paste that into your settings and check the boxes that suite your site&#8217;s needs. I recommend not using the plugin&#8217;s default CSS, as the wrapper included with it may mess up your theme.</p>
<h2>Step 2: Add Buttons to your theme as necessary.</h2>
<p>The FriendConnect Login plugin comes with a template tag that you can add wherever you want to place the Google login button: </p>
<pre class="php"><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="phpKeyword"> if </span><span class="phpOperator">(</span><span class="phpFunction"><span class="phpFunctionKeyword">function</span>_exists</span><span class="phpOperator">(</span><span class="phpString">'gfc_profile'</span><span class="phpOperator">)</span><span class="phpOperator">)</span> <span class="phpOperator">{</span><span class="htmlText">gfc_profile</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span><span class="phpOperator">}</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span></pre>
<p><a href="http://wpmu.org/wp-content/uploads/2010/09/googlelogin.png" title="googlelogin" rel="lightbox[38390]"><img src="http://wpmu.org/wp-content/uploads/2010/09/googlelogin.png" alt="" title="googlelogin" width="201" height="252" class="alignleft size-full wp-image-38412" /></a>Add it to your sidebar.php, comments.php, header.php or wherever you want to show the login button. The FriendConnect Login plugin provides you with a conditional logout snippet as well, that will distinguish user type and generate logout and profile links appropriately. You can find that code in the <a href="http://wordpress.org/extend/plugins/friendconnect-login/installation/" >installation instructions</a>, as well as the dashboard settings. </p>
<p>This plugin&#8217;s compatibility with BuddyPress is a bit spotty right now. Yes, it works to authenticate users and create a new account. However, avatars are not carried over and the username created is a very long number, which is problematic in BuddyPress. I wouldn&#8217;t recommend this plugin for use with BuddyPress in its current state but if the username issue can get sorted out, it may be a decent addition to your site.</p>
<p>The <a href="http://wordpress.org/extend/plugins/friendconnect-login/" >FriendConnect Login</a> plugin will help you to get more comments and interaction with your blog posts. Plus, you&#8217;ll keep the Google junkies happy. Win win.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=How+to+Add+Login+With+Google+Friend+Connect+to+Your+WordPress+Site+http://d2xdy.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=How+to+Add+Login+With+Google+Friend+Connect+to+Your+WordPress+Site+http://d2xdy.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/wordpress/news/how-to-add-login-with-google-friend-connect-to-your-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Submit Your Business to Google Places and Get Found on the Web</title>
		<link>http://pressography.com/tutorials/how-to-submit-your-business-to-google-places-and-get-found-on-the-web/</link>
		<comments>http://pressography.com/tutorials/how-to-submit-your-business-to-google-places-and-get-found-on-the-web/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 14:00:55 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google local]]></category>
		<category><![CDATA[google local business center]]></category>
		<category><![CDATA[google places]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[how to add google listing]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[verify google listing]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=38180</guid>
		<description><![CDATA[For the past few weeks we&#8217;ve been posting tutorials about how to use some powerful and free SEO tools to help you improve your WordPress site&#8217;s rankings with search engines. Whether your site runs on WordPress or not, you don&#8217;t want to neglect the opportunity to promote your business and get some attention online using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wp-content/uploads/2010/09/googlelocal.png" title="googlelocal" rel="lightbox[38180]"><img src="http://wpmu.org/wp-content/uploads/2010/09/googlelocal.png" alt="" title="googlelocal" width="229" height="235" class="alignleft size-full wp-image-38183" /></a>For the past few weeks we&#8217;ve been posting tutorials about how to use some powerful and free SEO tools to help you improve your WordPress site&#8217;s rankings with search engines. Whether your site runs on WordPress or not, you don&#8217;t want to neglect the opportunity to promote your business and get some attention online using Google Places.</p>
<h2>What is Google Places?</h2>
<p>Formerly known as Google Local Business Center, the new Place Pages help people who are searching to make more informed decisions about where to go.  Google lists everything  from restaurants and hotels to dry cleaners and bike shops, as well as non-business places like museums, schools and parks.</p>
<blockquote><p>
Place Pages connect people to information from the best sources across the web, displaying photos, reviews and essential facts, as well as real-time updates and offers from business owners.
</p></blockquote>
<h2>Step 1: Go to <a href="http://www.google.com/local/add/analyticsSplashPage" >Google Places</a> and click &#8220;List Your Business&#8221;</h2>
<p>If you have more than 10 business listings you can add them quickly using the <a href="http://www.google.com/local/add/uploadFeed?hl=en-US&#038;gl=US" >bulk upload</a> feature. They make this as easy as possible for you. </p>
<h2>Step 2: Check to see if your business has already been picked up by Google Places.</h2>
<p>Simply type in your phone number on the first registration screen and see if it matches correctly with your business number and location.  If it matches, then you can go ahead and edit your existing listing. If not, you&#8217;ll want to create a new listing and make sure you&#8217;re signed in with the Google account that you want to use.</p>
<h2>Step 3: Follow the steps that Google guides you through.</h2>
<p>Enter all of your basic information, add categories that apply to your business, hours operation, payment options, photos, videos, and any additional details you want potential customers to know about.</p>
<h2>Step 4: Get your listing verified.</h2>
<p>Google will call you to verify your listing, so have your phone handy. Otherwise you can verify via SMS or postcard. It shouldn&#8217;t take more than 12 hours for your listing to appear. Now you can track how your business listing is performing on Google with a personalized dashboard within Google Places. It includes data about how many times people have found your business on Google. </p>
<h4>Want more free ways to promote your business and boost your SEO? Check out our tutorial series:</h4>
<ul>
<li><b><a href="http://wpmu.org/this-just-in-new-google-xml-sitemap-plugin-supports-wordpress-multisite/">This Just In: New Google XML Sitemap Plugin Supports WordPress Multisite</a></b></li>
<li><b><a href="http://wpmu.org/discover-your-hidden-market-by-analyzing-google-top-search-queries/">Discover Your Hidden Market by Analyzing Google Top Search Queries</a></b></li>
<li><b><a href="http://wpmu.org/the-quick-start-guide-to-using-google-webmaster-tools-with-wordpress/">The Quick Start Guide to Using Google Webmaster Tools With WordPress</a></b></li>
</ul>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=How+to+Submit+Your+Business+to+Google+Places+and+Get+Found+on+the+Web+http://fgq57.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=How+to+Submit+Your+Business+to+Google+Places+and+Get+Found+on+the+Web+http://fgq57.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/tutorials/how-to-submit-your-business-to-google-places-and-get-found-on-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Tip: How to Customize Your WordPress Login Logo in Under a Minute</title>
		<link>http://pressography.com/wordpress/daily-tip-how-to-customize-your-wordpress-login-logo-in-under-a-minute/</link>
		<comments>http://pressography.com/wordpress/daily-tip-how-to-customize-your-wordpress-login-logo-in-under-a-minute/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 20:16:16 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[custom wordpress login]]></category>
		<category><![CDATA[customize wordpress login]]></category>
		<category><![CDATA[Daily Tip]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[wordpress login logo]]></category>
		<category><![CDATA[wordpress single user]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=37897</guid>
		<description><![CDATA[A customized WordPress login is a nice touch to any site, especially if you&#8217;re making it for someone other than yourself. There should be no need to install a plugin to do this for you. In order to keep your site lean, you&#8217;ll want to avoid adding loads of plugins that do little things like [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wp-content/uploads/2010/08/customlogin.png" title="customlogin" rel="lightbox[37897]"><img src="http://wpmu.org/wp-content/uploads/2010/08/customlogin-300x284.png" alt="" title="customlogin" width="300" height="284" class="alignleft size-medium wp-image-37898" /></a>A customized WordPress login is a nice touch to any site, especially if you&#8217;re making it for someone other than yourself.  There should be no need to install a plugin to do this for you.  In order to keep your site lean, you&#8217;ll want to avoid adding loads of plugins that do little things like this. </p>
<p>Here&#8217;s how you can customize your WordPress login with your own logo in under a minute. Simply add this to your theme&#8217;s <i>functions.php</i> file: </p>
<pre class="php">
<span class="phpFunctionKeyword">function</span> my_custom_login_logo<span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpFunction">echo</span> <span class="phpString">'<span class="phpOperator">&lt;</span>style type=<span class="phpString">"text/css"</span><span class="phpOperator">&gt;</span>
h1 a <span class="phpOperator">{</span> background-image<span class="phpOperator">:</span>url<span class="phpOperator">(</span>'</span>.get_bloginfo<span class="phpOperator">(</span><span class="phpString">'template_directory'</span><span class="phpOperator">)</span>.<span class="phpString">'/images/logo.png<span class="phpOperator">)</span> <span class="phpOperator">!</span>important; <span class="phpOperator">}</span>
<span class="phpOperator">&lt;</span>/style<span class="phpOperator">&gt;</span>'</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
add_action<span class="phpOperator">(</span><span class="phpString">'login_head'</span>, <span class="phpString">'my_custom_login_logo'</span><span class="phpOperator">)</span><span class="phpText">;</span>
</pre>
<p>Replace the logo.png with your filename and make sure to drop the file in your theme&#8217;s images directory. </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+How+to+Customize+Your+WordPress+Login+Logo+in+Under+a+Minute+http://y3fph.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+How+to+Customize+Your+WordPress+Login+Logo+in+Under+a+Minute+http://y3fph.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/wordpress/daily-tip-how-to-customize-your-wordpress-login-logo-in-under-a-minute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Tip: How to Enable Custom Backgrounds for WordPress 3.0 Themes</title>
		<link>http://pressography.com/tutorials/daily-tip-how-to-enable-custom-backgrounds-for-wordpress-3-0-themes-2/</link>
		<comments>http://pressography.com/tutorials/daily-tip-how-to-enable-custom-backgrounds-for-wordpress-3-0-themes-2/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 20:01:26 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Daily Tip]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[enable custom backgrounds]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[how to change background]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[upload background to wordpress]]></category>
		<category><![CDATA[WordPress 3.0]]></category>
		<category><![CDATA[wordpress single user]]></category>
		<category><![CDATA[wordpress theme development]]></category>
		<category><![CDATA[wordpress theming]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=37537</guid>
		<description><![CDATA[Enabling custom backgrounds is probably one of the easiest things you can do to improve a WordPress theme that you&#8217;re building or customizing. It takes one small addition to your theme&#8217;s functions.php file: add_custom_background(); Save that and you&#8217;ll get Backgrounds added to the Dashboard &#62;&#62; Appearance menu, as shown here. This will allow you or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wp-content/uploads/2010/08/bg.png" title="bg" rel="lightbox[37537]"><img src="http://wpmu.org/wp-content/uploads/2010/08/bg.png" alt="" title="bg" width="162" height="186" class="alignleft size-full wp-image-37539" /></a>Enabling custom backgrounds is probably one of the easiest things you can do to improve a WordPress theme that you&#8217;re building or customizing.  It takes one small addition to your theme&#8217;s <i>functions.php</i> file:</p>
<p><b>add_custom_background(); </b></p>
<p>Save that and you&#8217;ll get Backgrounds added to the <b>Dashboard</b> >> <b>Appearance</b> menu, as shown here.  </p>
<p>This will allow you or others using the theme to easily upload a background image and/or set a background color through the WordPress dashboard:</p>
<p><a href="http://wpmu.org/wp-content/uploads/2010/08/custombg.png" title="custombg" rel="lightbox[37537]"><img src="http://wpmu.org/wp-content/uploads/2010/08/custombg.png" alt="" title="custombg" width="592" height="449" class="aligncenter size-full wp-image-37538" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+How+to+Enable+Custom+Backgrounds+for+WordPress+3.0+Themes+http://7m946.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+How+to+Enable+Custom+Backgrounds+for+WordPress+3.0+Themes+http://7m946.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/tutorials/daily-tip-how-to-enable-custom-backgrounds-for-wordpress-3-0-themes-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Tip: How to Enable Custom Backgrounds for WordPress 3.0 Themes</title>
		<link>http://pressography.com/tutorials/daily-tip-how-to-enable-custom-backgrounds-for-wordpress-3-0-themes/</link>
		<comments>http://pressography.com/tutorials/daily-tip-how-to-enable-custom-backgrounds-for-wordpress-3-0-themes/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 20:01:26 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Daily Tip]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[enable custom backgrounds]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[how to change background]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[wordpress single user]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=37537</guid>
		<description><![CDATA[Enabling custom backgrounds is probably one of the easiest things you can do to improve a WordPress theme that you&#8217;re building or customizing. It takes one small addition to your theme&#8217;s functions.php file: add_custom_background(); Save that and you&#8217;ll get Backgrounds added to the Dashboard &#62;&#62; Appearance menu, as shown here. This will allow you or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wp-content/uploads/2010/08/bg.png" title="bg" rel="lightbox[37537]"><img src="http://wpmu.org/wp-content/uploads/2010/08/bg.png" alt="" title="bg" width="162" height="186" class="alignleft size-full wp-image-37539" /></a>Enabling custom backgrounds is probably one of the easiest things you can do to improve a WordPress theme that you&#8217;re building or customizing.  It takes one small addition to your theme&#8217;s <i>functions.php</i> file:</p>
<p><b>add_custom_background(); </b></p>
<p>Save that and you&#8217;ll get Backgrounds added to the <b>Dashboard</b> >> <b>Appearance</b> menu, as shown here.  </p>
<p>This will allow you or others using the theme to easily upload a background image and/or set a background color through the WordPress dashboard:</p>
<p><a href="http://wpmu.org/wp-content/uploads/2010/08/custombg.png" title="custombg" rel="lightbox[37537]"><img src="http://wpmu.org/wp-content/uploads/2010/08/custombg.png" alt="" title="custombg" width="592" height="449" class="aligncenter size-full wp-image-37538" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+How+to+Enable+Custom+Backgrounds+for+WordPress+3.0+Themes+http://7m946.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+How+to+Enable+Custom+Backgrounds+for+WordPress+3.0+Themes+http://7m946.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/tutorials/daily-tip-how-to-enable-custom-backgrounds-for-wordpress-3-0-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discover Your Hidden Market by Analyzing Google Top Search Queries</title>
		<link>http://pressography.com/tutorials/discover-your-hidden-market-by-analyzing-google-top-search-queries/</link>
		<comments>http://pressography.com/tutorials/discover-your-hidden-market-by-analyzing-google-top-search-queries/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 14:00:42 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[google top search queries]]></category>
		<category><![CDATA[google webmaster tools]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[impressions]]></category>
		<category><![CDATA[increase clickthrough rate]]></category>
		<category><![CDATA[increase CTR]]></category>
		<category><![CDATA[increase traffic from search engines]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[sales]]></category>
		<category><![CDATA[search query traffic]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[top search queries]]></category>
		<category><![CDATA[wordpress and google]]></category>
		<category><![CDATA[wordpress single user]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=37493</guid>
		<description><![CDATA[Top Search Queries is one of the most useful services provided by Google Webmaster Tools. It provides you with detailed information about when your site pops up in their search engine and what pages are attracting clicks. Specifically, you’ll find out: The total number of Google Web Search queries that returned pages from your site [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wp-content/uploads/2010/08/gwt.png" title="gwt" rel="lightbox[37493]"><img src="http://wpmu.org/wp-content/uploads/2010/08/gwt.png" alt="" title="gwt" width="100" height="83" class="alignleft size-full wp-image-37516" /></a><a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&#038;answer=35252" >Top Search Queries</a> is one of the most useful services provided by Google Webmaster Tools.  It provides you with detailed information about when your site pops up in their search engine and what pages are attracting clicks. Specifically, you’ll find out:</p>
<ul>
<li>The total number of Google Web Search queries that returned pages from your site results over the given period.</li>
<li>The top search queries that returned pages from your site.</li>
<li>Impressions: The number of times pages from your site were viewed in search results.</li>
<li>Clicks: The number of times your site&#8217;s listing was clicked in search results for a particular query.</li>
<li>CTR (clickthrough rate): The percentage of impressions that resulted in a click to your site.</li>
</ul>
<h2>3 Steps to Maximize Your Google Search Query Traffic and Increase Your Clickthrough Rate</h2>
<p>If you don&#8217;t have access to Google Webmaster Tools, it&#8217;s very easy to set up. Follow our <a href="http://wpmu.org/the-quick-start-guide-to-using-google-webmaster-tools-with-wordpress/" >Quick Start Guide to Using Google Webmaster Tools With WordPress</a> and you can activate the free service in under two minutes. Make sure you’re also hooked up to Google Analytics.  You&#8217;ll now have access to information that will help you to discover what people are looking for when they find your website.  </p>
<h2>Step 1. Use Google Webmaster Tools to find out what queries are resulting in traffic to your website.</h2>
<p>Immediately when you sign into your account you will see your top search queries in the dashboard.  Click on &#8220;more&#8221; just underneath the queries to see a full detailed graph. You&#8217;ll be able to sort your traffic by country, date, and search types. </p>
<p><a href="http://wpmu.org/wp-content/uploads/2010/08/searchquerygraph.jpg" title="searchquerygraph" rel="lightbox[37493]"><img src="http://wpmu.org/wp-content/uploads/2010/08/searchquerygraph.jpg" alt="" title="searchquerygraph" width="640" height="320" class="aligncenter size-full wp-image-37503" /></a></p>
<p>Make note of the impressions (number of times your page is viewed in search results) vs. clicks (number of times your page was clicked for that query).  </p>
<h2>Step 2. Sift the Data for Valuable Information.</h2>
<p>Don&#8217;t worry. You won&#8217;t need to be an SEO expert to analyze this data. Here&#8217;s what a sample looks like:</p>
<p><a href="http://wpmu.org/wp-content/uploads/2010/08/topqueries1.png" title="topqueries" rel="lightbox[37493]"><img src="http://wpmu.org/wp-content/uploads/2010/08/topqueries1.png" alt="" title="topqueries" width="732" height="430" class="aligncenter size-full wp-image-37500" /></a></p>
<p>So, let&#8217;s say you&#8217;ve got 4600 impressions due to people searching for &#8220;lollipop candy&#8221; and a 3% clickthrough rate.  That&#8217;s great if you&#8217;re a candy supplier, but it&#8217;s not so hot if you&#8217;re an investment banking firm who happened to use a lollipop image in a blog post.  You can disregard that information, even though it&#8217;s brought you a bit of traffic.</p>
<p>Focus on the queries that are the most relevant to your industry, even if they&#8217;re not exactly what you&#8217;ve determined to be your main focus. For example, you&#8217;re operating a store that sells bags, shoes, and other accessories but you&#8217;re getting loads of traffic from the query &#8220;matching eyeshadow&#8221;.  If you can find a way to relate this to your industry, then you may have found a small gold mine.</p>
<h2>Step 3: Actively promote products and content related to your most relevant top search queries.</h2>
<ul>
<li>Write more content to establish your business as an industry expert. If your site is getting tons of search queries from terms that your&#8217;re not currently focusing on, it may be time to change your focus. Give that hidden market a reason to stay, click through and buy your brand by focusing more on offering what your users are going to your site to find.</li>
<li>Feature products that are relevant to what people are searching for. There is only so much real estate on your front page but a good look at your queries will tell you exactly what is driving buyers to your catalog of products and services.</li>
<li>Consider adding new products that may be accessories to your main product line. If your site has solid search engine positioning and a decent clickthrough rate for items related to your main line, it may be profitable to expand your offerings into related areas.</li>
</ul>
<h2>Conclusion:</h2>
<p>Google&#8217;s top search query results can help you to formulate an aggressive strategy to increase your clickthroughs and bump up your sales with a few tweaks. A thoughtful combination of content creation, product selection and placement will not only improve your traffic but should also make your site more focused and keep you competitive.  Reconsider your site&#8217;s focus and your social media strategy. Is your content descriptive of the top queries that are leading potential customers to your website? Or is there a possibility that your top sales demographic may be lurking just beneath the surface?  Take a little time today to check out your top search queries and see if you can&#8217;t find a hidden market just waiting to be tapped.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Discover+Your+Hidden+Market+by+Analyzing+Google+Top+Search+Queries+http://8cs8d.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Discover+Your+Hidden+Market+by+Analyzing+Google+Top+Search+Queries+http://8cs8d.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/tutorials/discover-your-hidden-market-by-analyzing-google-top-search-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Tip: 3 Steps to Debugging a WordPress Multisite Network</title>
		<link>http://pressography.com/wordpress/daily-tip-3-steps-to-debugging-a-wordpress-multisite-network/</link>
		<comments>http://pressography.com/wordpress/daily-tip-3-steps-to-debugging-a-wordpress-multisite-network/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 22:12:57 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Daily Tip]]></category>
		<category><![CDATA[debugging multisite]]></category>
		<category><![CDATA[debugging wordpress]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[multisite configuration]]></category>
		<category><![CDATA[multisite database]]></category>
		<category><![CDATA[multisite database error]]></category>
		<category><![CDATA[multisite error]]></category>
		<category><![CDATA[multisite troubleshooting]]></category>
		<category><![CDATA[wordpress multisite requirements]]></category>
		<category><![CDATA[wpmu]]></category>
		<category><![CDATA[WPMU Dev Premium]]></category>
		<category><![CDATA[WPMU.org]]></category>
		<category><![CDATA[WPMUDev.org]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=37375</guid>
		<description><![CDATA[If you receive an error with your WordPress network, chances are that it is due to a failure that happens when WordPress cannot find one or more of the global tables for the network in the database. There are three major steps to walk through in the debugging process. This will help you to cover [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wp-content/uploads/2010/08/preferences_system_network.png" title="preferences_system_network" rel="lightbox[37375]"><img src="http://wpmu.org/wp-content/uploads/2010/08/preferences_system_network.png" alt="" title="preferences_system_network" width="128" height="128" class="alignleft size-full wp-image-37381" /></a>If you receive an error with your WordPress network, chances are that it is due to a failure that happens when WordPress cannot find one or more of the global tables for the network in the database. There are three major steps to walk through in the debugging process. This will help you to cover all your bases before seeking further help.</p>
<h2>Step 1: Check with your host to make sure that your account fulfills the technical <a href="http://codex.wordpress.org/Create_A_Network" >requirements</a> for a Multisite network.</h2>
<p>If your account is not equipped to run multisite, then your host may have disabled the functionality from running, which will result in errors. Check with your host to see if you need to upgrade your account.</p>
<h2>Step 2: Inspect your wp-config.php file.</h2>
<p>Check <b>wp-config.php</b> for the following:</p>
<ul>
<li>correct database details</li>
<li>SUBDOMAIN_INSTALL constant</li>
<li>MULTISITE constant</li>
<li>$base variable</li>
<li>table prefix</li>
</ul>
<p>If you have any code after this line, then it needs to be moved up above the &#8220;stop editing line&#8221;:</p>
<pre class="php">require_once<span class="phpOperator">(</span>ABSPATH <span class="phpOperator">.</span> <span class="phpString">'wp-settings<span class="phpOperator">.</span>php'</span><span class="phpOperator">)</span><span class="phpText">;</span></pre>
<h2>Step 3: Check your database.</h2>
<p>Check to make sure that all of the extra network tables have been created:</p>
<ul>
<li>wp_blogs</li>
<li>wp_blog_versions</li>
<li>wp_registration_log</li>
<li>wp_signups</li>
<li>wp_site</li>
<li>wp_sitemeta</li>
</ul>
<p>For a complete overview and description of all Multisite database tables, check out the <a href="http://codex.wordpress.org/Database_Description#Multisite_Table_Overview" >breakdown</a> in the WordPress codex.  </p>
<p>Another unusual reason that site creation might stop working on your network is that the location of the database server may have changed. In that case you&#8217;ll need to update your wp-config.php file.  After covering all these bases, then you&#8217;re sure to hit the forums with the full knowledge that you&#8217;ve done a thorough check through all the usual suspects. </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+3+Steps+to+Debugging+a+WordPress+Multisite+Network+http://f65st.th8.us" title="Post to Twitter"><img class="nothumb" src="http://wpmu.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Daily+Tip:+3+Steps+to+Debugging+a+WordPress+Multisite+Network+http://f65st.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://pressography.com/wordpress/daily-tip-3-steps-to-debugging-a-wordpress-multisite-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.433 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-09-10 17:44:12 -->
