<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Solutions for WP</title>
	
	<link>http://solutionsforwp.com</link>
	<description>How to do it in WordPress</description>
	<lastBuildDate>Mon, 21 Mar 2011 20:29:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SolutionsForWp" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="solutionsforwp" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Disable the Admin bar in WordPress</title>
		<link>http://solutionsforwp.com/disable-the-admin-bar-in-wordpress/</link>
		<comments>http://solutionsforwp.com/disable-the-admin-bar-in-wordpress/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 20:29:28 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Content Display]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=212</guid>
		<description><![CDATA[I hate the new Admin bar in WordPress, and while it&#8217;s easy to disable in your User profile, if you have a site with many subscribers and you don&#8217;t want them to be annoyed by the bar, or for some design reason you don&#8217;t want it to show, here is the code to place in [...]]]></description>
			<content:encoded><![CDATA[<p>I hate the new Admin bar in WordPress, and while it&#8217;s easy to disable in your User profile, if you have a site with many subscribers and you don&#8217;t want them to be annoyed by the bar, or for some design reason you don&#8217;t want it to show, here is the code to place in your functions.php file:</p>
<p>/* Disable the Admin Bar for all but admins. */<br />
if(!current_user_can(&#8216;administrator&#8217;)):<br />
show_admin_bar(false);<br />
endif;</p>
<p>If you want to disable the admin bar completely, add this to your functions.php file:</p>
<p>/* Disable the Admin Bar for everyone. */<br />
show_admin_bar(false);</p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/disable-the-admin-bar-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Add Facebook Like Button To Your WordPress Site Without a Plugin</title>
		<link>http://solutionsforwp.com/add-facebook-like-button-to-your-wordpress-site-without-a-plugin/</link>
		<comments>http://solutionsforwp.com/add-facebook-like-button-to-your-wordpress-site-without-a-plugin/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 14:15:34 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Scripts & Code]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=204</guid>
		<description><![CDATA[No need for a plugin to put the Facebook Like button on your posts. Paste this where you want the button in your single.php or post.php depending on the theme you&#8217;re using: &#60;iframe src="http://www.facebook.com/plugins/like.php? href=&#60;?php echo urlencode(get_permalink()); ?&#62;&#38;amp;layout=button_count &#38;amp;show_faces=false&#38;amp;width=450&#38;amp;action=like&#38;amp; font=lucida+grande&#38;amp;colorscheme=light&#38;amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"&#62;&#60;/iframe&#62; There are several settings, so if you want [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://solutionsforwp.com/wp-content/uploads/2010/08/heart-80x80.png" alt="" title="heart" width="80" height="80" class="alignleft size-thumbnail wp-image-205" />No need for a plugin to put the Facebook Like button on your posts. Paste this where you want the button in your single.php or post.php depending on the theme you&#8217;re using:</p>
<pre><code>&lt;iframe src="http://www.facebook.com/plugins/like.php?
href=&lt;?php echo urlencode(get_permalink()); ?&gt;&amp;amp;layout=button_count
&amp;amp;show_faces=false&amp;amp;width=450&amp;amp;action=like&amp;amp;
font=lucida+grande&amp;amp;colorscheme=light&amp;amp;height=21"
scrolling="no" frameborder="0" style="border:none; overflow:hidden;
width:450px; height:21px;" allowTransparency="true"&gt;&lt;/iframe&gt;</code></pre>
<p>There are several settings, so if you want yours to look different than mine, <a href="http://developers.facebook.com/docs/reference/plugins/like">generate the code here</a>.<br />
Then, put in
<pre><code>&lt;?php echo urlencode(get_permalink()); ?&gt;</code></pre>
<p> where the URL is in the code, as I&#8217;ve done above.<br />
<em>(I&#8217;ve had to include carriage returns in the code above to get it to fit in the space. You might need to take them out when you paste in the code.)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/add-facebook-like-button-to-your-wordpress-site-without-a-plugin/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>How to replace Read More with an image</title>
		<link>http://solutionsforwp.com/how-to-replace-read-more-with-an-image/</link>
		<comments>http://solutionsforwp.com/how-to-replace-read-more-with-an-image/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 12:47:26 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Content Display]]></category>
		<category><![CDATA[Scripts & Code]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=192</guid>
		<description><![CDATA[Sometimes it&#8217;s preferable to have a button instead of text to allow the reader to jump to the rest of a post. Following is the code to replace the text with an image: &#60;?php the_content('&#60;img src= "' . get_bloginfo('template_directory'). '/images/readmore.png" alt="read more" title="Read more..." /&#62;'); ?&#62; Obviously, replace /images/readmore.png with your image director and file [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://solutionsforwp.com/wp-content/uploads/2010/07/readmore-80x80.png" alt="" title="read more" width="80" height="80" class="alignleft size-thumbnail wp-image-193" />Sometimes it&#8217;s preferable to have a button instead of text to allow the reader to jump to the rest of a post. Following is the code to replace the text with an image:</p>
<pre>
 <code>&lt;?php the_content('&lt;img src=
"' . get_bloginfo('template_directory'). '/images/readmore.png"
alt="read more" title="Read more..." /&gt;'); ?&gt;</code>
</pre>
<p>Obviously, replace /images/readmore.png with your image director and file name.</p>
<p>(This is slightly different from the <a href="http://codex.wordpress.org/Customizing_the_Read_More">instructions in the WordPress Codex</a>, which did not work for me.)</p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/how-to-replace-read-more-with-an-image/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Enable the WordPress 3.0 Multi-Site Option</title>
		<link>http://solutionsforwp.com/enable-the-wordpress-3-0-multi-site-option/</link>
		<comments>http://solutionsforwp.com/enable-the-wordpress-3-0-multi-site-option/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 21:35:34 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Scripts & Code]]></category>
		<category><![CDATA[multi-site]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=189</guid>
		<description><![CDATA[There are so many great things about WordPress 3.0 (like the awesome Menus feature for example), and one of the best is that they&#8217;ve combined WP and WPMU at long last. You have to turn on the multi-site option by adding a bit of code to the wp-config.php file to enable it: define('WP_ALLOW_MULTISITE', true); After [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://solutionsforwp.com/wp-content/uploads/2010/07/male_female_users_comments-80x80.png" alt="" title="male_female_users_comments" width="80" height="80" class="alignleft size-thumbnail wp-image-190" />There are so many great things about WordPress 3.0 (like the awesome <a href="http://solutionsforwp.com/how-to-use-wordpress-3-0-menus-feature/">Menus feature</a> for example), and one of the best is that they&#8217;ve combined WP and WPMU at long last. You have to turn on the multi-site option by adding a bit of code to the wp-config.php file to enable it:</p>
<p><code>define('WP_ALLOW_MULTISITE', true);</code></p>
<p>After adding this, you should see Network under the Tools options in the Admin panel and you can take it from there!</p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/enable-the-wordpress-3-0-multi-site-option/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting around the upload limit in the php.ini</title>
		<link>http://solutionsforwp.com/getting-around-the-upload-limit-in-the-php-ini/</link>
		<comments>http://solutionsforwp.com/getting-around-the-upload-limit-in-the-php-ini/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 17:00:57 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Error Messages]]></category>
		<category><![CDATA[media]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=185</guid>
		<description><![CDATA[Ever tried to upload images in WordPress and get the following error message “Your php.ini upload_max_filesize is 2m”? This article provides a solution which is as simple as pasting a bit of code into a file and uploading it to your WordPress installation.]]></description>
			<content:encoded><![CDATA[<p><img src="http://solutionsforwp.com/wp-content/uploads/2010/06/open_folder_warning-80x80.png" alt="" title="open_folder_warning" width="80" height="80" class="alignleft size-thumbnail wp-image-186" />Ever tried to upload images in WordPress and get the following error message “Your php.ini upload_max_filesize is 2m”? This article provides a solution which is as simple as pasting a bit of code into a file and uploading it to your WordPress installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/getting-around-the-upload-limit-in-the-php-ini/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to use WordPress 3.0 Menus feature</title>
		<link>http://solutionsforwp.com/how-to-use-wordpress-3-0-menus-feature/</link>
		<comments>http://solutionsforwp.com/how-to-use-wordpress-3-0-menus-feature/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 17:15:26 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Content Display]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=181</guid>
		<description><![CDATA[Justin Tadlock always does a great job of covering new WordPress features, and this article is no exception. WordPress 3.0 has a new Menus feature that will make navigation design much easier for the average user as well as for theme designers.]]></description>
			<content:encoded><![CDATA[<p><img src="http://solutionsforwp.com/wp-content/uploads/2010/06/info-80x80.png" alt="" title="info" width="80" height="80" class="alignleft size-thumbnail wp-image-183" />Justin Tadlock always does a great job of covering new WordPress features, and this article is no exception. WordPress 3.0 has a new Menus feature that will make navigation design much easier for the average user as well as for theme designers.</p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/how-to-use-wordpress-3-0-menus-feature/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add an event calendar to WordPress with Google calendar</title>
		<link>http://solutionsforwp.com/add-an-event-calendar-to-wordpress-with-google-calendar/</link>
		<comments>http://solutionsforwp.com/add-an-event-calendar-to-wordpress-with-google-calendar/#comments</comments>
		<pubDate>Tue, 18 May 2010 20:10:14 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[calendar]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=178</guid>
		<description><![CDATA[There are not very many good plugin options for WordPress right now if you want an event calendar. The Calendar plugin is the only one I&#8217;ve found that functions well as a full featured calendar and it has some great features, like color-coded categories for events and a widget. However, you can also just integrate [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://solutionsforwp.com/wp-content/uploads/2010/05/calendar-80x80.png" alt="" title="calendar" width="80" height="80" class="alignleft size-thumbnail wp-image-179" />There are not very many good plugin options for WordPress right now if you want an event calendar. The <a href="http://wordpress.org/extend/plugins/calendar/">Calendar</a> plugin is the only one I&#8217;ve found that functions well as a full featured calendar and it has some great features, like color-coded categories for events and a widget. However, you can also just integrate a Google calendar into a WordPress site. The linked article is a nice, quick tutorial explaining how to make this work.</p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/add-an-event-calendar-to-wordpress-with-google-calendar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Optimize Your WordPress Site for Search Engines</title>
		<link>http://solutionsforwp.com/how-to-optimize-your-wordpress-site-for-search-engines/</link>
		<comments>http://solutionsforwp.com/how-to-optimize-your-wordpress-site-for-search-engines/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 02:40:21 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=174</guid>
		<description><![CDATA[WordPress is already set up to be well optimized for SEO, but there are some additional techniques to employ and plugins available that can greatly improve search engine rankings. First, install either the Platinum SEO Pack or the All In One SEO Pack plugin. Then check out this comprehensive guide to WordPress SEO.]]></description>
			<content:encoded><![CDATA[<p><img src="http://solutionsforwp.com/wp-content/uploads/2010/04/search-80x80.png" alt="" title="search" width="80" height="80" class="alignleft size-thumbnail wp-image-175" />WordPress is already set up to be well optimized for SEO, but there are some additional techniques to employ and plugins available that can greatly improve search engine rankings. First, install either the <a href="http://wordpress.org/extend/plugins/platinum-seo-pack/">Platinum SEO Pack</a> or the <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All In One SEO Pack</a> plugin. Then check out this <a href="http://yoast.com/articles/wordpress-seo/">comprehensive guide to WordPress SEO</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/how-to-optimize-your-wordpress-site-for-search-engines/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to control which widgets appear on which pages</title>
		<link>http://solutionsforwp.com/how-to-control-which-widgets-appear-on-which-pages/</link>
		<comments>http://solutionsforwp.com/how-to-control-which-widgets-appear-on-which-pages/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 18:14:36 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=170</guid>
		<description><![CDATA[If you get into managing a large amount of content or have a very custom site, and you&#8217;re using widgets, odds are that you&#8217;ll have a need to be able to selectively display certain widgets on certain pages. There is an awesome plugin called Widget Logic that addresses this need perfectly. It adds a field [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://solutionsforwp.com/wp-content/uploads/2010/04/accept_database-80x80.png" alt="" title="accept_database" width="80" height="80" class="alignleft size-thumbnail wp-image-171" />If you get into managing a large amount of content or have a very custom site, and you&#8217;re using widgets, odds are that you&#8217;ll have a need to be able to selectively display certain widgets on certain pages. There is an awesome plugin called <a href="http://wordpress.org/extend/plugins/widget-logic/">Widget Logic</a> that addresses this need perfectly. It adds a field at the bottom of each widget box where you can drop in a WordPress <a href="http://codex.wordpress.org/Conditional_Tags">Conditional Tag</a> (or other PHP) such as is_home() to show a widget only on the main page for example.</p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/how-to-control-which-widgets-appear-on-which-pages/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use a custom field outside the loop</title>
		<link>http://solutionsforwp.com/use-a-custom-field-outside-the-loop/</link>
		<comments>http://solutionsforwp.com/use-a-custom-field-outside-the-loop/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 11:35:53 +0000</pubDate>
		<dc:creator>Randa</dc:creator>
				<category><![CDATA[Custom Fields]]></category>
		<category><![CDATA[loop]]></category>

		<guid isPermaLink="false">http://solutionsforwp.com/?p=165</guid>
		<description><![CDATA[Custom fields are so flexible and being able to display them outside the loop might certainly come in handy.]]></description>
			<content:encoded><![CDATA[<p><img src="http://solutionsforwp.com/wp-content/uploads/2010/04/light_bulb-80x80.png" alt="" title="light_bulb" width="80" height="80" class="alignleft size-thumbnail wp-image-167" />Custom fields are so flexible and being able to display them outside the loop might certainly come in handy.</p>
]]></content:encoded>
			<wfw:commentRss>http://solutionsforwp.com/use-a-custom-field-outside-the-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

