<?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>NonStopSites Blog &#187; wordpress</title>
	<atom:link href="http://blog.nonstopsites.us/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nonstopsites.us</link>
	<description>Dynamic Websites Done Right!</description>
	<lastBuildDate>Sat, 24 Jul 2010 06:02:46 +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>How to Troubleshoot and Fix WordPress Blank Page Error</title>
		<link>http://blog.nonstopsites.us/how-to-troubleshoot-and-fix-wordpress-blank-page-error/</link>
		<comments>http://blog.nonstopsites.us/how-to-troubleshoot-and-fix-wordpress-blank-page-error/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 06:02:46 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=200</guid>
		<description><![CDATA[Getting blank pages on your WordPress admin panel? Tried re-installing WordPress? Kept activating and de-activating plugins with no results? Kept looking at WordPress files like wp-config.php to find a blank line? Tried increasing WordPress memory limit by editing wp-config.php and still getting WordPress Blank Screen of Death? OK, let's cut to the chase: First, .htaccess [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Getting blank pages on your WordPress admin panel?</p>
<p>Tried re-installing WordPress? Kept activating and de-activating plugins with no results? Kept looking at WordPress files like wp-config.php to find a blank line? Tried increasing WordPress memory limit by editing wp-config.php and still getting WordPress Blank Screen of Death?</p>
<p>OK, let's cut to the chase:</p>
<p>First, .htaccess file is your friend. Add the line below to your .htaccess file to troubleshoot the WordPress blank page error:</p>
<p><strong>php_flag display_errors on</strong></p>
<p>Now when you go back to your WordPress admin panel, you'll get an error message telling you what it is that is wrong. More than likely the error will be about exhausting memory. If that's the case, don't even mess with wp-config.php file. Here is what you do:</p>
<p>Delete the line we put in the first step and add the following line in .htaccess file:</p>
<p><strong>php_value memory_limit 64M</strong></p>
<p>Now, if the error message was memory related and this does not fix it, try putting 96M instead of 64M. </p>
<p>That's it! You just solved your WordPress admin panel blank screen problem.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/how-to-troubleshoot-and-fix-wordpress-blank-page-error/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/how-to-troubleshoot-and-fix-wordpress-blank-page-error/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/how-to-troubleshoot-and-fix-wordpress-blank-page-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using ColorBox JQuery Plugin</title>
		<link>http://blog.nonstopsites.us/using-colorbox-jquery-plugin/</link>
		<comments>http://blog.nonstopsites.us/using-colorbox-jquery-plugin/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 04:19:13 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=157</guid>
		<description><![CDATA[There are a number of lightbox tools are available. Until I discovered ColorBox JQuery plugin, I wasn't completely comfortable using any of them. Why ColorBox? Well, it is easy to use, lightweight and it supports all kinds of different content like photos, photo groups, slideshow, ajax, inline, and iframed content. I am using ColorBox JQuery [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>There are a number of lightbox tools are available. Until I discovered <a href="http://colorpowered.com/colorbox/">ColorBox JQuery plugin</a>, I wasn't completely comfortable using any of them.</p>
<p>Why ColorBox? Well, it is easy to use, lightweight and it supports all kinds of different content like photos, photo groups, slideshow, ajax, inline, and iframed content.</p>
<p>I am using ColorBox JQuery plugin on one of my sites but I wish it was as easy as the <a href="http://www.longren.org/wordpress/thumbnail-viewer/">thumbnail viewer plugin</a> when using on a WordPress site. With thumbnail viewer plugin all you need to do is add rel=thumbnail to any link tag surrounding your thumbnail. You'll see an example below.</p>
<p>There are a couple of <a href="http://wordpress.org/extend/plugins/tags/colorbox">WordPress ColorBox plugins available</a>. I haven't tried the LightBox Plus yet. I haven't been able to get the JQuery ColorBox WordPress plugin to work. I'd rather use ColorBox JQuery plugin on my WordPress site without a plugin. I am still experimenting with that. Including JQuery functions on WordPress header is a little different. I will soon update you on that. Stay tuned...</p>
<p>UPDATE 03/06/2010:</p>
<p>OK! Now the image on this post works with ColorBox. Here is how I made it work:</p>
<p>Added the link to the ColorBox stylesheet on the header.php right after all the other stylesheet links.<br />
After  "wp_head();", I put the link to the ColorBox script and the JQuery function call:</p>
<blockquote><p>
$(document).ready(function($){<br />
	$("a[rel='colorbox']").colorbox();<br />
});
</p></blockquote>
<p>Now, pay attention to the $ in the function bracket. You won't see it on ColorBox example pages. This is required when you are adding JQuery functions to your WordPress header. Without that all the $ within your code would not be interpreted correctly. This is the best way to add JQuery functions to your WordPress header.</p>
<p>Finally I added the rel="colorbox" to the link to the image. You can use a different name but make sure it is the same one you in the JQuery function.</p>
<p>One last point: If you have the <a href="http://blog.nonstopsites.us/wordpress-flickr-manager-plugin/">WordPress Flickr Manager plugin</a> as I do, disable the image viewer.</p>
<p>Here is the ColorBox example:</p>
<p><a href="http://blog.nonstopsites.us/wp-content/uploads/2010/01/1257390858019.jpg" rel="colorbox"><img src="http://blog.nonstopsites.us/wp-content/uploads/2010/01/1257390858019-216x300.jpg" alt="" title="ColorBox Test" width="216" height="300" class="aligncenter size-medium wp-image-159" /></a></p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/using-colorbox-jquery-plugin/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/using-colorbox-jquery-plugin/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/using-colorbox-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I Joined The Elegant Themes</title>
		<link>http://blog.nonstopsites.us/why-i-joined-the-elegant-themes/</link>
		<comments>http://blog.nonstopsites.us/why-i-joined-the-elegant-themes/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 19:08:28 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[NonStopSites]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=113</guid>
		<description><![CDATA[Last week I joined the ElegantThemes theme club. It is a steal at $19.95 per year. You get immediate access to 14 WordPress themes. The theme you are seeing on this blog is one of these 14 themes. As Nick summarizes: Each WordPress theme comes expertly coded in valid XHTML and CSS, and all are [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p><a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=2438_0_1_10" target="_blank"><img border="0" src="http://www.elegantthemes.com/affiliates/banners/300x250.gif" width="300" height="250"></a></p>
<p>Last week I joined the <a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=2438">ElegantThemes theme club</a>.  </p>
<p>It is a steal at $19.95 per year. You get immediate access to 14 WordPress themes. The theme you are seeing on this blog is one of these 14 themes. As Nick summarizes:</p>
<blockquote><p>Each WordPress theme comes expertly coded in valid XHTML and CSS, and all are made compatible with the latest version of WordPress. I make sure that each template performs flawlessly in each of the most widely used browsers to insure maximum functionality. Furthermore, all sidebars are made widget ready for your convenience. </p></blockquote>
<p>Elegant Themes also has a very reasonable licensing agreement. You are allowed to make modifications and remove credit links. As long as you don't claim to own the themes and/or try tell or distribute them and use them on the websites you own you won't be violating terms of use.</p>
<p>Why I did I decide to join <a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=2438">the Elegant Themes</a>?</p>
<p>There are hundreds maybe thousands of free WordPress themes available online. Some of them are great themes and supported and updated by the authors who should be praised for their contributions. During the past year and a half as I started using WordPress, I found great free themes I still use.</p>
<p>I also dabbled in modifying these themes and even making my own theme by reading "WordPress Theme Design: A complete guide to creating professional WordPress themes" by Tessa Blakeley Silver. I recommed the book to anyone who wants to create his/her own theme.</p>
<div class="amtap-item" lang="en" xml:lang="en"><a href="http://www.amazon.com/WordPress-Theme-Design-complete-professional/dp/1847193099%3FSubscriptionId%3D1HFSGG3Z2D759XAJMPG2%26tag%3Dnonstopsiteco-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1847193099"><img src="http://ecx.images-amazon.com/images/I/51M1qMas0nL._SL110_.jpg" width="89" height="110" alt=""/></a><br />
<h3><a href="http://www.amazon.com/WordPress-Theme-Design-complete-professional/dp/1847193099%3FSubscriptionId%3D1HFSGG3Z2D759XAJMPG2%26tag%3Dnonstopsiteco-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1847193099">WordPress Theme Design</a></h3>
<p class="author">Tessa Blakeley Silver.					Packt Publishing 2008, 					Paperback,				224 pages,				&#36;30.90</p>
</div>
<p>I found that it is a lot easier and faster to start with a theme and then modify it to my needs and desires. This is the number one reason I joined the <a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=2438">Elegant Themes</a>. I got an immediate access to 14 themes to do just that. </p>
<p>Even if you are not interested in doing any modifications, having 14 different themes to choose for your website / blog for only $19,95 is a steal. There are premium WordPress themes available for $79 plus. Yes that is $79 + for one theme. Most themes you get at Elegant Themes have options to change color scheme and look easily. This is great for newbies who still want to have a blog with a unique look.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/why-i-joined-the-elegant-themes/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/why-i-joined-the-elegant-themes/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/why-i-joined-the-elegant-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here is a way to win Premium WP Themes</title>
		<link>http://blog.nonstopsites.us/win-premium-wp-themes/</link>
		<comments>http://blog.nonstopsites.us/win-premium-wp-themes/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 16:21:06 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=59</guid>
		<description><![CDATA[Its been a long time since we had any contests on Blog Oh! Blog. To add to your winter happiness, I am announcing a mega contest where everyone gets a chance to win not one, not two, but 10 Super Premium WordPress themes made by the coolest theme designers from all over the Internet. Mega [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><blockquote><p>Its been a long time since we had any contests on Blog Oh! Blog. To add to  your winter happiness, I am announcing a mega contest where everyone gets a  chance to win not one, not two, but 10 <strong>Super Premium WordPress  themes</strong> made by the coolest theme designers from all over the  Internet.</p></blockquote>
<p><a title="Permanent Link to Mega Contest - Win 10 Premium Themes worth $700" rel="bookmark" href="http://www.blogohblog.com/mega-contest-win-1-premium-themes-worth-700/" target="_blank">Mega Contest - Win 10 Premium Themes worth $700</a></p>
<p>Those are pretty cool WordPress themes.</p>
<p>Even if you do not win, a visit to jai's blog is well worth it. He has great looking free WordPress themes available for download.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/win-premium-wp-themes/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/win-premium-wp-themes/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/win-premium-wp-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Flickr Manager Plugin</title>
		<link>http://blog.nonstopsites.us/wordpress-flickr-manager-plugin/</link>
		<comments>http://blog.nonstopsites.us/wordpress-flickr-manager-plugin/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 02:22:43 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=55</guid>
		<description><![CDATA[WordPress Flickr Manager is another great plugin I recently discovered. It integrates your Flickr account with WordPress backend. Adding pictures to posts has always been a hassle for me. It makes inserting pictures to posts a snap. You can insert one photo or a complete set of photos quickly and easily. I highly recommend this [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p><a href="http://tgardner.net/wordpress-flickr-manager/">WordPress Flickr Manager</a> is another great plugin I recently discovered. It integrates your <a href="http://http://www.flickr.com/">Flickr </a>account with WordPress backend. </p>
<p>Adding pictures to posts has always been a hassle for me. It makes inserting pictures to posts a snap. You can insert one photo or a complete set of photos quickly and easily. I highly recommend this plugin if you regularly insert sets of pictures on your posts.</p>
<p>Here is an example:</p>
<p><a href="http://www.flickr.com/photos/29370560@N02/2744963069/" title="100_1004" rel="flickr-mgr[72157606622349713]" class="flickr-image" >
	<img src="http://farm4.static.flickr.com/3032/2744963069_9572531095_t.jpg" alt="100_1004" class="flickr-medium" />
</a>
<a href="http://www.flickr.com/photos/29370560@N02/2744962913/" title="100_1010" rel="flickr-mgr[72157606622349713]" class="flickr-image" >
	<img src="http://farm4.static.flickr.com/3115/2744962913_6de26b342a_t.jpg" alt="100_1010" class="flickr-medium" />
</a>
<a href="http://www.flickr.com/photos/29370560@N02/2744962729/" title="100_0979" rel="flickr-mgr[72157606622349713]" class="flickr-image" >
	<img src="http://farm4.static.flickr.com/3228/2744962729_a306144db0_t.jpg" alt="100_0979" class="flickr-medium" />
</a>
<a href="http://www.flickr.com/photos/29370560@N02/2745798166/" title="100_0980" rel="flickr-mgr[72157606622349713]" class="flickr-image" >
	<img src="http://farm4.static.flickr.com/3153/2745798166_1ab37ea643_t.jpg" alt="100_0980" class="flickr-medium" />
</a>
</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/wordpress-flickr-manager-plugin/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/wordpress-flickr-manager-plugin/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/wordpress-flickr-manager-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geo Mashup Plugin for WordPress</title>
		<link>http://blog.nonstopsites.us/geo-mashup-plugin-for-wordpress/</link>
		<comments>http://blog.nonstopsites.us/geo-mashup-plugin-for-wordpress/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 04:14:41 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=37</guid>
		<description><![CDATA[I have been searching for a good Google Maps Plugin for WordPress. Google Maps Plugin by Avi was the one I had found the most useful after trying a few others. After inconsistent results and css problems with different themes, I even tried using iframe embed on pages and posts within â€œcodeâ€ tags as I [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>I have been searching for a good Google Maps Plugin for WordPress. <a title="Google Maps Plugin" href="http://blog.nonstopsites.us/google-maps-plugin-for-wordpress/" target="_self">Google Maps Plugin by Avi</a> was the one I had found the most useful after trying a few others. After inconsistent results and css problems with different themes, I even tried using iframe embed  on pages and posts within â€œcodeâ€ tags as I explained <a title="Issues with Google Maps Plugin" href="http://blog.nonstopsites.us/updates-on-some-wordpress-plugins/" target="_self">here</a>.</p>
<p>I have been looking to find a solution to accomplish the following tasks:</p>
<p>1) I want to be able put maps of places I visited on individual posts. I also want to have a single page with a map with markers of all these places I posted about. Clicking on these markers will open the info window with a link to the individual map.</p>
<p>2) I want to add a location mashup map for a business with multiple locations. This will work pretty much the same as above except the markers will link to the individual location maps.</p>
<p>I am happy to report that I found the right plugin: <a title="Geo Mashup Plugin for WordPress" href="http://code.google.com/p/wordpress-geo-mashup/" target="_blank">Geo Mashup Plugin for WordPress</a>.</p>
<ul>
<blockquote>
<li><a>A single map page that can present your posts in many ways </a>
<ul>
<li><a>It can show just one category, for example </a></li>
<li><a>Clicking on a post marker shows a summary of the post in an info bubble </a></li>
</ul>
</li>
<li><a>A small search map on the post editing page to easily add location to posts </a></li>
<li><a>Template tags to make links from located posts to the map and other things </a></li>
<li><a>GeoRSS automatically added to feeds </a></li>
<li><a>Option show the full post for a clicked marker on the map page </a></li>
</blockquote>
</ul>
<p>You can see a working example of this plugin on my latest project <a title="Geo Mashup Plugin Example at CarDealsNet.com" href="http://www.cardealsnet.com/map/" target="_self">CarDealsNet.com</a>.</p>
<p>This is a must-have plugin.</p>
<p>Note on Word WordPress 2.6: While working to set this plugin up, I wanted to have the mashup page have a different page template. I noticed that my "page template" option disappeared. I found out that the page template I use did not have the header:</p>
<blockquote><p>&lt;?php</p>
<p>/*<br />
Template Name: Geo Mashup<br />
*/</p>
<p>&lt;?</p></blockquote>
<p>I am pretty sure the template without the header worked on the previous WordPress version. Anyways, if you don't see the "page template" option while writing a page even though you created one, it is because you forgot to add the template header.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/geo-mashup-plugin-for-wordpress/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/geo-mashup-plugin-for-wordpress/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/geo-mashup-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updates on Some WordPress Plugins</title>
		<link>http://blog.nonstopsites.us/updates-on-some-wordpress-plugins/</link>
		<comments>http://blog.nonstopsites.us/updates-on-some-wordpress-plugins/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 22:48:03 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=36</guid>
		<description><![CDATA[Google Maps for WordPress plugin I posted about before has not been working consistently. Even after the latest update, it was not able to pinpoint the marker to the exact location on the map. After trying another plugin that gave JavaScript errors, I decided to use iframe embed on pages and posts within "code" tags [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p><a title="Previous Post about Google Maps for WordPress plugin" href="http://blog.nonstopsites.us/google-maps-plugin-for-wordpress/">Google Maps for WordPress</a> plugin I posted about before has not been working consistently. Even after the latest update, it was not able to pinpoint the marker to the exact location on the map. After trying another plugin that gave JavaScript errors, I decided to use  iframe embed  on pages and posts within "code" tags which worked out great. The the moral of the story is that before you run out and try to find a plugin to accomplish a certain task, see if you can do it without a plugin.</p>
<p>Perishable Press has a good article titled <a title="Optimize WordPress: Pure Code Alternatives for 7 Unnecessary Plugins" href="http://perishablepress.com/press/2007/12/18/optimize-wordpress-pure-code-alternatives-for-7-unnecessary-plugins/">Optimize  WordPress: Pure Code Alternatives for 7 Unnecessary Plugins</a> about this.</p>
<p>The process of embedding the Google Map on your blog page or post is very easy: After you searched for the address on Google Maps, you'll see a link on top left corner of the map that is titled "Link to this page". When you click on the link, dropdown box will offer you two options.  Click on "Customize and preview embedded map" option and adjust your map size settings so that the map fits your blog page/post, copy the code and past it on your page/post within "code" tags. That is all there is to it. This is the easiest way to go if you only need a simple location map on your blog.</p>
<p>The same approach applies to WP iPaper plugin I talked about <a title="Post About WP iPaper Plugin" href="http://blog.nonstopsites.us/wordpress-site-hurry/">here</a>. There is no need to use it at all. Get your iPaper embed code and insert it on your post/page within "code' tags. This way you can even include the document's text in embed code. Including the text of your document in the embed code will allow search engine  crawlers to index the document.  As Scribd explains:</p>
<blockquote><p>This will mean people who search for relevant  terms may end up at the page where you add the embed code. This will help drive  more traffic to web pages where you embed the document.</p></blockquote>
<p>Now on to another plugin I have started using:</p>
<p><a title="WordPress CustomAdmin Branding Plugin" href="http://pressingpixels.com/wordpress-custom-admin-branding/" target="_blank">WordPress Custom Admin Branding</a> plugin is great if you have a blog/website you will allow others to register and use admin area to contribute. You can customize your WordPress login screen to look the way you want.</p>
<blockquote><p>The Custom Admin Branding Plugin allows you to not only re-brand the WordPress login screen, but also the admin header and footer with your own custom images.</p></blockquote>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/updates-on-some-wordpress-plugins/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/updates-on-some-wordpress-plugins/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/updates-on-some-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tags Page</title>
		<link>http://blog.nonstopsites.us/wordpress-tags-page/</link>
		<comments>http://blog.nonstopsites.us/wordpress-tags-page/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 18:54:32 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=35</guid>
		<description><![CDATA[I rather have the total control of how my sidebars look. Although the WordPress widgets are easy to use and great time savers, they don't always work well with all the themes. I like the Tag Cloud but I noticed that a big Tag Cloud on a sidebar does not look good. So I decided to put the Tag [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>I rather have the total control of how my sidebars look. Although the WordPress widgets are easy to use and great time savers, they don't always work well with all the themes.</p>
<p>I like the Tag Cloud but I noticed that a big Tag Cloud on a sidebar does not look good. So I decided to put the Tag Cloud on a separate page:</p>
<p><a href="http://blog.nonstopsites.us/tags/">http://blog.nonstopsites.us/tags/</a></p>
<p>Here are the instructions to do it:</p>
<blockquote><p>If you have tons of tags and you want to display them all in one place, but not on the main page of your blog, you can create a tag archive page. Here's how.</p>
<ol>
<li>Make a copy of your single.php or index.php template, and name it something like "tag-archive.php"</li>
<li>At the top of your tag archive template, insert this:<br />
<code>&lt;?php<br />
/*<br />
Template Name: Tag Archive<br />
*/<br />
?&gt;</code></li>
<li>Replace everything from<br />
<code>&lt;?php if (have_posts()) : ?&gt;</code><br />
to<br />
<code>&lt;?php endif; ?&gt;</code><br />
(aka The Loop) with the <code>&lt;?php wp_tag_cloud(); ?&gt;</code> function. You can download a <a href="http://webbleyou.googlecode.com/files/tag-archive.php">Kubrick-compatible tag archive template here</a>.</li>
<li>Upload the new template file tag-archive.php to your theme folder.</li>
<li>Create a new page and call it something like "Tag Archives". Under Page Template in the sidebar, select the new template you created. Leave the body of the page blank, and publish it.</li>
<li>Make sure you link to the new page in your navbar or sidebar so people can find the tag archive page</li>
</ol>
</blockquote>
<p><a title="Displaying Tags on A Tag Archive Page" href="http://www.webbleyou.com/tag/wordpress-2.3" target="_blank">Displaying Tags on a Tag Archive Page</a></p>
<p>Â </p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/wordpress-tags-page/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/wordpress-tags-page/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/wordpress-tags-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Site in a Hurry</title>
		<link>http://blog.nonstopsites.us/wordpress-site-hurry/</link>
		<comments>http://blog.nonstopsites.us/wordpress-site-hurry/#comments</comments>
		<pubDate>Sat, 10 May 2008 18:53:11 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[NonStopSites]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=32</guid>
		<description><![CDATA[Last week I had to put together a site in a few hours that would contain videos, mp3 files and a simple contact form.  Considering the lack of time I decided toÂ useÂ WordPress to put this site together. Step One was to pick a theme that I can quickly make it look distinct without spending much time. I [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Last week I had to put together a site in a few hours that would contain videos, mp3 files and a simple contact form.  Considering the lack of time I decided toÂ useÂ WordPress to put this site together.</p>
<p>Step One was to pick a theme that I can quickly make it look distinct without spending much time. I found the <a title="Options Theme by Justin Tadlock" href="http://justintadlock.com/archives/2008/02/24/options-wordpress-theme" target="_self">Options theme by Justin Tadlock</a> was perfect for the job. I have not studied the documentation and not even using most of the options available but it was a good choice since it fit the project.</p>
<p>Step Two was to add some static pages. One was a location page where I wanted to use Google Maps Plugin for WordPress I <a title="Google Maps Plugin for WordPress" href="http://blog.nonstopsites.us/google-maps-plugin-for-wordpress/" target="_self">mentioned here before</a>. Unfortunately it only displayed the map as a gray rectangle. Figuring that it was due to style sheet issues and not having time to go through it, I opted to use the iframe embed of the Google Map which worked perfectly.</p>
<p>I also wanted to have some documents available on this site. I like scribd and the ipaper format so I went ahead and got the <a title="WP IPaper Plugin" href="http://www.beardygeek.com/ipaper-plugin/" target="_self">WP IPaper Plugin</a>. It did not work at first. Since I really wanted to have the IPaper version of documents on this site, I decided to spend a little more time to troubleshoot which led me to discover that the plugin works only if you do not put the access key in quotes. Cool!</p>
<p>It is time for the videos and I realize what a hassle to embed videos in WordPress... Well, after a quick search online I came across <a title="FLV-Embed Plugin" href="http://www.channel-ai.com/blog/plugins/flv-embed/" target="_self">FLV-Embed Plugin</a>. SinceÂ I already had FLV copies of videos available this plugin was a perfect choice.</p>
<p>To have the mp3 files embedded, the clear choice was <a title="Audio Player WordPress Plugin" href="http://www.1pixelout.net/code/audio-player-wordpress-plugin/" target="_self">Audio Player WordPress Plugin</a>.</p>
<p>When it came to deciding on the contact form, I quickly scanned and tried a few plugins promising to accomplish this task effortlessly. Finally I decided to use <a title="cforms II" href="http://www.deliciousdays.com/cforms-plugin" target="_self">cforms II</a>. It is easy to understand, install, use and customize. It does the job!</p>
<p>In less than three hours <a title="Swift299Gas.com" href="http://swift299gas.com/" target="_self">Swift299Gas.com</a> was up and running thanks to WordPress and all these theme and plugin authors who make them available.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/wordpress-site-hurry/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/wordpress-site-hurry/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/wordpress-site-hurry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Sphere Related Content Plugin</title>
		<link>http://blog.nonstopsites.us/sphere-related-content-plugin/</link>
		<comments>http://blog.nonstopsites.us/sphere-related-content-plugin/#comments</comments>
		<pubDate>Tue, 06 May 2008 06:07:26 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=31</guid>
		<description><![CDATA[Here is the latest plugin I installed here: WordPress Sphere Related Content Plugin. I think it is pretty cool. The Sphere Related Content plug-in displays an icon link at the end of your blog posts. When a reader clicks on the icon link, Sphere finds blog posts and media articles related to your content. See [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Here is the latest plugin I installed here: WordPress Sphere Related Content Plugin. I think it is pretty cool.</p>
<blockquote><p>The Sphere Related Content plug-in displays an icon link at the end of your blog posts. When a reader clicks on the icon link, Sphere finds blog posts and media articles related to your content. See it in action on over 1 billion article pages on popular media sites and blogs like the WSJ, New York Times, TechCrunch and Real Clear Politics. Our plug-in works best on English language blog posts and topics that are being actively discussed in the blogosphere.</p></blockquote>
<p><a title="WordPress Sphere Related Content Plugin" href="http://wordpress.org/extend/plugins/sphere-related-content/" target="_self">WordPress Sphere Related Content Plugin</a></p>
<p>It has the new video widget and extra options for political bloggers. Too bad <a title="Skip Dunn's Blog" href="http://www.nonstopsite.com">Skip Dunn</a> can't use this one since he is still blogging on nucleusCMS platform.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/sphere-related-content-plugin/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/sphere-related-content-plugin/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/sphere-related-content-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
