<?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>Wordpress Master &#187; Wordpress General Tips</title>
	<atom:link href="http://www.wordpress-master.com/category/wordpress-general-tips/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wordpress-master.com</link>
	<description>Teaching Wordpress to the World</description>
	<lastBuildDate>Sat, 19 Jun 2010 13:40:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Want to add a Widget to your Wordpress Blog?</title>
		<link>http://www.wordpress-master.com/add-a-widget-to-your-wordpress-blog.html</link>
		<comments>http://www.wordpress-master.com/add-a-widget-to-your-wordpress-blog.html#comments</comments>
		<pubDate>Fri, 12 Mar 2010 02:08:04 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Wordpress Advanced]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Wordpress Theme Tips]]></category>
		<category><![CDATA[Appearance Section]]></category>
		<category><![CDATA[Array Name]]></category>
		<category><![CDATA[Control]]></category>
		<category><![CDATA[Custom Functions]]></category>
		<category><![CDATA[Default Text]]></category>
		<category><![CDATA[Div Id]]></category>
		<category><![CDATA[Endif]]></category>
		<category><![CDATA[Footer]]></category>
		<category><![CDATA[H3]]></category>
		<category><![CDATA[Html Files]]></category>
		<category><![CDATA[Key Point]]></category>
		<category><![CDATA[Level Control]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Php File]]></category>
		<category><![CDATA[Site Php]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Ul]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Wordpress Blog]]></category>
		<category><![CDATA[wordpress help]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=539</guid>
		<description><![CDATA[One of my favorite features of Wordpress is the fact that it is so very customizable.  And it's so very easy to add in pieces that maintains a level of control over the site without having to manually change PHP or HTML files.  You can access it all from within the back end of Wordpress. You can customize these pieces and this extra control with Widgets.  I'm not going to go into to much detail here.  If you've been using Wordpress for very long you know what Widgets are.]]></description>
			<content:encoded><![CDATA[<p></p><p>One of my favorite features of Wordpress is the fact that it is so very customizable.  And it&#8217;s so very easy to add in pieces that maintains a level of control over the site without having to manually change PHP or HTML files.  You can access it all from within the back end of Wordpress.</p>
<p>You can customize these pieces and this extra control with Widgets.  I&#8217;m not going to go into to much detail here.  If you&#8217;ve been using Wordpress for very long you know what Widgets are.</p>
<p>The key point here is that you can add a Widget section and then easily control, add, edit the content of that section from the admin of Wordpress under the Appearance section.</p>
<p>Adding a Widget section is pretty straight forward even.  In your functions.php file, (or custom_functions.php for Thesis) you will just need to add something similar to the following line:</p>
<p><code>register_sidebar(array('name'=&gt;'New Widget', 'before_title'=&gt;'&lt;h3&gt;', 'after_title'=&gt;'&lt;/h3&gt;'));</code></p>
<p>The above is pretty simple right?  The &#8220;name&#8221; is set to whatever you want to call it.  And then you set the tags you want to wrap around the title. Make sure you use something descriptive for the name so you know what the widget is for.</p>
<p>After adding this to the function file you should be able to visit the Widgets section under Appearance and start adding Widgets to it immediately.</p>
<p>But we still have to decide where the widget is going to show up.</p>
<p>So in your template page you&#8217;ll need to add some code to set where the Widget shows up.  Usually you&#8217;ll add some default text that will display if there are no Widgets for that section yet.  Here&#8217;s an example, naturally you can style it how you want:</p>
<p><code>&lt;div id="footer-widgeted"&gt;<br />
&lt;div&gt;<br />
&lt;ul id="footer-widget"&gt;<br />
&lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('New Widget') ) : ?&gt;<br />
&lt;li&gt;<br />
&lt;h3&gt;Testing Widget Area&lt;/h3&gt;<br />
&lt;p&gt;This is an example of a widgeted area.&lt;/p&gt;<br />
&lt;/li&gt;<br />
&lt;?php endif; ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>That should do it.  In a future post I&#8217;ll go into more detail and give some specific examples of adding widgets around a site.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fadd-a-widget-to-your-wordpress-blog.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fadd-a-widget-to-your-wordpress-blog.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/add-a-widget-to-your-wordpress-blog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copying Content from Word into Wordpress</title>
		<link>http://www.wordpress-master.com/copying-content-from-word-into-wordpress.html</link>
		<comments>http://www.wordpress-master.com/copying-content-from-word-into-wordpress.html#comments</comments>
		<pubDate>Tue, 23 Feb 2010 07:00:19 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[blog content]]></category>
		<category><![CDATA[Blog Entry]]></category>
		<category><![CDATA[blog publishing]]></category>
		<category><![CDATA[Colors]]></category>
		<category><![CDATA[Copy And Paste]]></category>
		<category><![CDATA[Copy Paste]]></category>
		<category><![CDATA[External Source]]></category>
		<category><![CDATA[First Option]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Open Office]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Text Button]]></category>
		<category><![CDATA[Wordpad]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Wysiwyg Editor]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=534</guid>
		<description><![CDATA[I see this happen all the time with clients. The write up content in Word or Wordpad, and then later try to copy and paste into Wordpress.  The resulting mess usually confuses many.  In fact even if there isn&#8217;t an obvious mess to the user, there is sometimes a very large behind the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I see this happen all the time with clients. The write up content in Word or Wordpad, and then later try to copy and paste into Wordpress.  The resulting mess usually confuses many.  In fact even if there isn&#8217;t an obvious mess to the user, there is sometimes a very large behind the scenes mess.</p>
<h2>So how do we copy this content into our blog?</h2>
<p>It doesn&#8217;t matter what you are using, whether it&#8217;s Open Office, Pages on Mac, or even copying and pasting content from another website.  If you paste formated text into a WYSIWYG editor you will end up with a mess.</p>
<h3>What is a WYSIWYG editor?</h3>
<p>When you are in the back end of Wordpress and you are posting a blog entry, you&#8217;ll notice that you post it into a box with formatting icons on the top of it.  You can make text bold, change it&#8217;s font size, colors, the list goes on.  This is a WYSIWYG Editor, it stands for What You See Is What You Get.</p>
<p>If you paste already formated text from an external source into a WYSIWYG Editor you will find that it tries to keep the formatting intact.  This results in a bunch of text, possibly an entire post, that doesn&#8217;t match the formatting of the rest of your site.</p>
<p>In fact, even if you paste the text into the box and it comes out looking half way decent, you might be surprised to find out there is a lot of hidden code in the background.  You can&#8217;t see this code but it could be there.</p>
<p>The reason you want clean text, is not only because you want your posts to look like the rest of your site, but also because if there is a bunch of hidden code that serves no purpose it can possibly dilute what the search engines see on your site as content.  In all cases I think it just serves your blog best if you keep it as simple as possible.  It&#8217;s really not difficult.</p>
<h2>How can I clean the text before pasting?</h2>
<p>The easiest method is to just click the &#8220;Paste as Plain Text&#8221; button, or for a really cool effect &#8220;Paste from Word&#8221;.  The first option will just clean all formatting from the text and you will need to reformat it all to match your document.  Personally I use Google Docs and I just don&#8217;t ever use formatting, I just format it when I get it over there. It makes it pretty easy to manage topic ideas and content on the go from any computer.</p>
<p>The latter option is for if you actually drafted your document in Word.  What this option does is take and remove all the formatting that MS Word adds, and replaces it with valid clean HTML markup.  This is handy because it will keep bold text bold, but with proper HTML code.  It will keep text that you marked as a &#8220;Heading&#8221; as the same heading you formatted it as.  It won&#8217;t necessarily be able to replace all the formatting properly, but it should do a pretty good job of it.  If you use this feature you&#8217;ll quickly be able to learn what will work and what won&#8217;t.</p>
<p>To find these buttons you have to make sure that you turn on &#8220;Show Kitchen Sink&#8221; it&#8217;s the last button on the top row, this will display a second row, which will give you the buttons we&#8217;ve talked about above.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fcopying-content-from-word-into-wordpress.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fcopying-content-from-word-into-wordpress.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/copying-content-from-word-into-wordpress.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Limit the Spam your Blog Attracts the Right Way</title>
		<link>http://www.wordpress-master.com/limit-spam-website-right-way.html</link>
		<comments>http://www.wordpress-master.com/limit-spam-website-right-way.html#comments</comments>
		<pubDate>Sat, 30 Jan 2010 22:42:47 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Setting Up Wordpress]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Attempt]]></category>
		<category><![CDATA[best wordpress plugins]]></category>
		<category><![CDATA[Block Spam]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Contact Forms]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Email Addresses]]></category>
		<category><![CDATA[Eternity]]></category>
		<category><![CDATA[False Positives]]></category>
		<category><![CDATA[Ploy]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Real People]]></category>
		<category><![CDATA[Rule Of Thumb]]></category>
		<category><![CDATA[Site Stats]]></category>
		<category><![CDATA[using wordpress]]></category>
		<category><![CDATA[Viagra]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=525</guid>
		<description><![CDATA[The general theory is if you value your visitors communication then you should not make it harder for them to communicate in an attempt to block Spam. Instead there are many other ways to prevent it behind the scenes. CAPTCHA in my opinion is a last resort, but what other options are there?  How can you effectively prevent idiots from spamming your contact forms and comment boxes? ]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.wordpress-master.com/limit-spam-website-right-way.html" title="Permanent link to Limit the Spam your Blog Attracts the Right Way"><img class="post_image alignright" src="http://www.wordpress-master.com/wp-content/uploads/2010/01/akismet.png" width="234" height="242" alt="Akismet Configuration" /></a>
</p><p>In a previous article, I wrote about <a href="http://www.wordpress-master.com/does-captcha-hurt-your-blog.html">why you might consider CAPTCHA to be a bad method of protecting your blog from Spam</a>.  I&#8217;m not going to go into depth on that topic again, I&#8217;ve linked to it if you want to read it.  The general theory is if you value your visitors communication then you should not make it harder for them to communicate in an attempt to block Spam. Instead there are many other ways to prevent it behind the scenes.</p>
<p>So the first method I would do, and always do on every blog I create whether it&#8217;s for a client or for myself, is install Akismet.  Wordpress comes with it, it&#8217;s very light weight, powerful and effective.  Since Wordpress already comes with it installing it is just a matter of going to your plugins and clicking &#8220;Activate&#8221;.  There is one additional step and that is for you to go to Wordpress.com register a username only, and get your API Key.</p>
<p>Once you have your API Key, just enter it into your Akismet settings and you are all finished.</p>
<p>You&#8217;ll find Akismet is very effective.  I don&#8217;t see it miss very much spam, and I rarely see a false positive.  When you log into your Admin from now on, right there on the dashboard you&#8217;ll see your site stats and a link to your comment Spam.  With one click you can delete it all.  And it is very easy to scroll through it looking for false positives.</p>
<p>One thing to note though, spammers are crafty.  They&#8217;ll add comments about how correct the post was and how beneficial it was to them and that they are going to bookmark it for all eternity.  But if you look their name will be Viagra, and their web address will be something selling viagra.  It&#8217;s all just a ploy to try and get that comment approved and get some kind of link to their site.  Make sure you watch for real posts from real people that have something real to say.</p>
<h2>Protecting email addresses and contact forms.</h2>
<p>The next piece you should be aware of is that just by being online you are going to be subjected to spam.  So as a rule of thumb I never put email addresses on a website.  Spiders, and spam bots come along scraping the web of email addresses.  The only reason to put your email address out there in my opinion is if you really are out of Viagra and you haven&#8217;t gotten any emails from sources you can buy it from lately.</p>
<p>But keep in mind it is important to make it easy for visitors to contact you.  Instead of posting your email address it can be just as effective to just put up a contact form.  In my opinion it is even more effective.  By putting a link to your email there are many visitors that can&#8217;t click it to send you an email.  By clicking it their computer will try to open the default email client and send you mail.  What if they use webmail?  The link won&#8217;t work, they&#8217;ll need to copy and paste.  What if they are at a friends computer or coffee shop?  Well I guess if they don&#8217;t use webmail they&#8217;ll need to remember you website or your email address and email you when they get home.</p>
<p>Having a contact form means that without leaving your site they can just type in an email and hit submit and off it goes.  They just sent you an email.  This is a much better form of providing a point a contact in my opinion.</p>
<p>It is very important to use the proper contact form.  The contact form can&#8217;t allow header injection, it should check the referrer of the form post to see if the post came from your own site. These are just basic programming aspects, and if they are in place they will ensure that even if you get the occasional spam from the form it was probably manually submitted because a spammer was looking for a hole, chances are they won&#8217;t find one and they&#8217;ll move on to easier targets.</p>
<p>A nice Contact Form that is well programmed and secure that I use on many of my sites is <a href="http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/">produced by Dagon Design</a>.  And naturally, in my opinion you should turn the CAPTCHA off.</p>
<p>In conclusion, it is my opinion that with just a little bit of work you can block or make it much easier to deal with the majority of Spam coming through your website.  And this is the way it should be.  YOU should be dealing with the spam, your VISITORS should NOT be having to jump through hoops just to communicate.  Let me know what you guys think.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Flimit-spam-website-right-way.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Flimit-spam-website-right-way.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/limit-spam-website-right-way.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Does CAPTCHA Hurt Your Blog?</title>
		<link>http://www.wordpress-master.com/does-captcha-hurt-your-blog.html</link>
		<comments>http://www.wordpress-master.com/does-captcha-hurt-your-blog.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 05:15:36 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Setting Up Wordpress]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[building blog traffic]]></category>
		<category><![CDATA[Cops]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[High Speed]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Miles Per Hour]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Spam Bots]]></category>
		<category><![CDATA[Speed Crash]]></category>
		<category><![CDATA[Sweet Feeling]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=521</guid>
		<description><![CDATA[The main reason someone would consider using CAPTCHA on their blog to begin with is probably to try and prevent spammers. You open a website, and over time you'll notice that as your site gets found online the spam starts flowing in. It's a bitter sweet feeling. If the bots can find you, then people will start finding you, but you don't really want the spam bots on your site.

Normally to alleviate the extra work of dealing with all the spam many will use a CAPTCHA image in their form to prevent these automated bots from posting. But if you have a website then I'm sure you've visited another website. Have you ever visited a site with CAPTCHA and had difficulty posting anything because you can't read the letters?]]></description>
			<content:encoded><![CDATA[<p></p><p>I actually don&#8217;t get this question very often.  The question I often hear is, &#8220;Can you help me get CAPTCHA set up on my site/blog/etc?&#8221;. Usually people just want it but a lot of times they don&#8217;t think about whether or not its a good idea.</p>
<p>Think about it this way.  If you didn&#8217;t know cops exist, and you wanted to drive to work.  You know it takes maybe 20 minutes at 60 miles per hour, so naturally it will only take 10 minutes if you go 120 miles per hour, right?  Well, then you&#8217;ll discover the cops, and hopefully you won&#8217;t discover the high speed crash.</p>
<p>This is kind of how CAPTCHA can be for your blog, website, and more.  Naturally the negatives aren&#8217;t as harsh as being arrested or a high speed crash, but they might be pretty serious for a business.</p>
<p>The main reason someone would consider using CAPTCHA on their blog to begin with is probably to try and prevent spammers.  You open a website, and over time you&#8217;ll notice that as your site gets found online the spam starts flowing in.  It&#8217;s a bitter sweet feeling.  If the bots can find you, then people will start finding you, but you don&#8217;t really want the spam bots on your site.</p>
<p>Normally to alleviate the extra work of dealing with all the spam many will use a CAPTCHA image in their form to prevent these automated bots from posting. But if you have a website then I&#8217;m sure you&#8217;ve visited another website.  Have you ever visited a site with CAPTCHA and had difficulty posting anything because you can&#8217;t read the letters?</p>
<p>If you can read the letters then most bots can actually be programmed these days to read them as well.  So these letters are usually very hard to read.  Do you want to risk a potential contact getting frustrated and leaving the site?</p>
<p>A while back I found a study that a developer had created.  This particular developer tested CAPTCHA on 50 websites he was maintaining for his clients.  I can&#8217;t find the link to it right now or I&#8217;d post it for you.  The first 3 months he had 25 sites with CAPTCHA and 25 sites without, for the next 3 months he reversed it.  So he had the results of a pretty decent study.</p>
<p>He found on average on his well visited sites, that about 7% of the form submissions were spam, if I remember correctly.  Now on the months that CAPTCHA was in place he would see that all of spam failed to submit the form properly, but the interesting part was that an additional 4-5% of form submissions were also failing.  These were new unique visits as well, a total of 11-12% of failed submissions, compared to only 7% spam on the months with no CAPTCHA.</p>
<p>Maybe in the beginning of your site when Spam is high and human visitors are low, comparatively, then you can afford to take this risk.  But even considering the time you save if you have a start up website I would think that every single contact would be important.  Can you really afford to loose 1 out of every 20 visitors because they can&#8217;t get past your CAPTCHA?</p>
<p>Now if your offering or their reason for posting is so very compelling that they feel a strong need to do so, then they might fight through it.  But the less compelling the reason for posting, the easier the person will give up.  I don&#8217;t know if I want to take the risk of loosing 5% or even more.  I think I&#8217;ll just find other ways of dealing with the Spam.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fdoes-captcha-hurt-your-blog.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fdoes-captcha-hurt-your-blog.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/does-captcha-hurt-your-blog.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Accessing Wordpress functions from external PHP pages</title>
		<link>http://www.wordpress-master.com/wordpress-functions-external-php-pages.html</link>
		<comments>http://www.wordpress-master.com/wordpress-functions-external-php-pages.html#comments</comments>
		<pubDate>Wed, 09 Dec 2009 05:53:50 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Wordpress Advanced]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Wordpress Software]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Endif]]></category>
		<category><![CDATA[H2]]></category>
		<category><![CDATA[Header Php]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Php Blog]]></category>
		<category><![CDATA[Query Posts]]></category>
		<category><![CDATA[Sidebar]]></category>
		<category><![CDATA[theme design]]></category>
		<category><![CDATA[using wordpress]]></category>
		<category><![CDATA[Wordpress Blog]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=499</guid>
		<description><![CDATA[So a friend of mine shoots me an email today.  She had a front end website, just set of basic pages built with PHP and one of the links on the navigation was a Wordpress blog installed on the same hosting.  She wanted to display an RSS feed in the sidebar of the front end website by using a nifty little script called Simple Pie.  But the RSS feed to be pulled was the feed from the Wordpress installation.  I helped show her a easier method of pulling in the latest feeds.  There are always 101 ways to skin a cat.  With a single include you can easily gain access to all the Wordpress functions and display your information as you choose.]]></description>
			<content:encoded><![CDATA[<p></p><p>So a friend of mine shoots me an email today.  She had a front end website, just set of basic pages built with PHP and one of the links on the navigation was a Wordpress blog installed on the same hosting.  She wanted to display an RSS feed in the sidebar of the front end website by using a nifty little script called <a href="http://simplepie.org/">Simple Pie</a>.</p>
<p>Looking over the script, I found it to be a handy little script.  It pulls an RSS feed and parses it easily for you and then you can output the parts you want with links to the full article.  The only problem I found with what she was trying to do, she just wanted to parse the RSS feed of the Wordpress blog on the same site and display the last 5 articles on the home page of the primary site.</p>
<p>This is easily done with about 8 lines of code.  You can get full access to everything Wordpress has to offer from external PHP pages on the same site.</p>
<p>The first thing you need to do is include a Wordpress file in order to load the functions you&#8217;ll need access too:</p>
<p><code>&lt;?php<br />
require_once('./blog/wp-blog-header.php');<br />
?&gt;</code></p>
<p>The above code is assuming that your installation is in the &#8220;blog&#8221; directory, naturally change it to reflect your installation.  Once this is included in your script you can access all the Wordpress functions.  Now if we expand on that code as follows:</p>
<p><code>&lt;?php<br />
require_once('./blog/wp-blog-header.php');<br />
query_posts('showposts=5'); ?&gt;<br />
&lt;?php if (have_posts()) : ?&gt;<br />
&lt;?php while (have_posts()) : the_post(); ?&gt;<br />
&lt;h2&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;" rel="bookmark" title="Permanent Link: &lt;?php the_title(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;<br />
&lt;?php endwhile; ?&gt;<br />
&lt;?php else : ?&gt;<br />
&lt;?php endif; ?&gt;</code></p>
<p>Now if you plug through the code you&#8217;ll see that we are pulling the last 5 posts (showposts=5) and then we are looping through that information and writing it in HTML.  Surround each title with an H2, or your own choice, and create a link with the appropriate Wordpress permalink.</p>
<p>So instead of messing with an entire separate class or script we&#8217;ve included the Wordpress functions, then just used the functions to display the information we already wanted.  Keep it simple.  Use the tools you already have available to you.</p>
<p>The main lesson I find with this example is that there is always 101 ways to skin a cat.  The idea is to make sure you are using the tools already available to you, and implementing the solution that keeps it simple.  Don&#8217;t get focused in on a solution and waste a lot of time, and never hesitate to ask for help.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-functions-external-php-pages.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-functions-external-php-pages.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/wordpress-functions-external-php-pages.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Five Core Plugins every Wordpress Needs</title>
		<link>http://www.wordpress-master.com/five-core-plugins-every-wordpress-needs.html</link>
		<comments>http://www.wordpress-master.com/five-core-plugins-every-wordpress-needs.html#comments</comments>
		<pubDate>Fri, 06 Nov 2009 05:48:12 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Good Plugins]]></category>
		<category><![CDATA[Plugin Reviews]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Brainer]]></category>
		<category><![CDATA[Cms]]></category>
		<category><![CDATA[Core Features]]></category>
		<category><![CDATA[Design Sitemap]]></category>
		<category><![CDATA[Hasn]]></category>
		<category><![CDATA[Lightweight]]></category>
		<category><![CDATA[Pagination]]></category>
		<category><![CDATA[Ping Optimizer]]></category>
		<category><![CDATA[Pleasure]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Stumbleupon]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wordpress tips]]></category>
		<category><![CDATA[Xml Sitemap]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=473</guid>
		<description><![CDATA[I've been running many blogs, I have even built many websites for customers using Wordpress.  This includes using Wordpress as a CMS, or as a blog system.  In every case there are a few core features that each site needs, and the plugins I keep going back to deliver these features just simply work.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.wordpress-master.com/five-core-plugins-every-wordpress-needs.html" title="Permanent link to Five Core Plugins every Wordpress Needs"><img class="post_image alignright" src="http://www.wordpress-master.com/wp-content/uploads/2009/11/dagondesign.png" width="144" height="236" alt="DagonDesign Plugins" /></a>
</p><p>I&#8217;ve been running many blogs, I have even built many websites for customers using Wordpress.  This includes using Wordpress as a CMS, or as a blog system.  In every case there are a few core features that each site needs, and the plugins I keep going back to deliver these features just simply work.</p>
<p>Here&#8217;s my list:</p>
<h2>1. Akismet</h2>
<p>This one is a no brainer, it&#8217;s already included in every Wordpress Installation and the plugin works very well.  Akismet has been key to blocking the spam on many sites I&#8217;ve had the pleasure of working on.  It&#8217;s easy to use.  All you need to do is activate it, and get a key by creating a Wordpress.com account.</p>
<h2><a href="http://www.wordpress-master.com/recommends/pingoptimizer">2. MaxBlogPress Ping Optimizer</a></h2>
<p>I don&#8217;t know if this plugin is necessarily the number 2 most important, but in the order that I get them installed this is number 2.  Pinging your blog posts is kind of an overused feature that isn&#8217;t entirely effective anymore.  But it&#8217;s still available and still can provide some benefits even if just a small amount of marketing.  The best part about this Wordpress plugin is that it ensures that you don&#8217;t over ping from your blog on accident.  Any time you edit a post, or schedule a future publish date, your blog can be pinging the same posts over and over, or even pinging when the post hasn&#8217;t published yet.  This plugin makes sure that it doesn&#8217;t happen, even provides a nice log so you can see it&#8217;s effect.</p>
<h2><a href="http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/">3. Dagon Design Sitemap Generator</a></h2>
<p>This is a Wordpress Plugin that dynamically generates a visitor sitemap.  It&#8217;s lightweight, looks decent on a fresh install.  It&#8217;s easy to customize.  Has a lot of settings on the admin such as being able to set up the pagination which I think is important for the search engines.  This is not an XML Sitemap, this actually becomes a page on your site.  Visitors can use it to see all your pages, and the Search Engines will crawl it and find a link to every page.</p>
<h2><a href="http://su.pr/developers/Supr:WordPress_Plugin/">4. Supr by StumbleUpon</a></h2>
<p>I really like this plugin.  You can sign up for an account with su.pr add in your logins for Twitter and Facebook, then add the API keys into your Wordpress Admin and every time you post it will automatically post the title and a shortened link to your Twitter account and Facebook account.  If you are just starting out in blogging it can be a great way to spread what you are doing amongst your friends to support you.  As a business it&#8217;s a great way to spread the word especially when starting out.  Also from their control panel they provide tracking for the clicks, which is very handy to monitor the effectiveness.</p>
<h2><a href="http://tweetmeme.com/about/plugins">5. TweetMeme Retweet Button</a></h2>
<p>Here&#8217;s a plugin that adds a nice little graphic on your posts.  It makes it easy for people to retweet your posts right after they visit your site to read it.  It also shows how many times it&#8217;s been retweeted.  It will always show 1 if you are using the Supr plugin because you tweeted it yourself, if you have a couple friends supporting you it&#8217;ll easily get tweeted a couple more times.  It&#8217;s important to market your site, and your own group of friends can be a great place to start.</p>
<h2><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">5.1 All in One SEO Pack</a></h2>
<p>A quick bonus recommendation.  Personally I prefer to use the <a href="http://www.wordpress-master.com/recommends/thesis">Thesis Theme</a>, which includes many SEO improvements already and this plugin isn&#8217;t necessary.  But if you don&#8217;t have the pleasure of using a theme with these features built in, then I would highly recommend this plugin.  It adds in canonical URL&#8217;s, allows you to set custom meta tags, custom page titles and the list goes on.  This is also very valuable for CMS type sites.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Ffive-core-plugins-every-wordpress-needs.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Ffive-core-plugins-every-wordpress-needs.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/five-core-plugins-every-wordpress-needs.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Are you suffering from Wordpress Plugin overload?</title>
		<link>http://www.wordpress-master.com/wordpress-plugin-overload.html</link>
		<comments>http://www.wordpress-master.com/wordpress-plugin-overload.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 03:10:21 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Plugin Reviews]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[blog publishing]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Capability]]></category>
		<category><![CDATA[Cms]]></category>
		<category><![CDATA[Disability]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Hello World]]></category>
		<category><![CDATA[Huge List]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[Load Tests]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[Plugin Updates]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Programming Framework]]></category>
		<category><![CDATA[Resource Hog]]></category>
		<category><![CDATA[Response Time]]></category>
		<category><![CDATA[Type Script]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=469</guid>
		<description><![CDATA[One of the things I like best about Wordpress is how lightweight it is.  It's simple, it does it's job, highly customizable.  Plus, even though it is simple it can be made to be much more complicated through the use of plugins.  You can add just the features and abilities that you need for your site.

You know a spoiler might improve the performance of a race car, but not if you attach 15 of them.  Is there such a thing as to many plugins?  How many is to many?  How does it affect the speed of your website?]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.wordpress-master.com/wordpress-plugin-overload.html" title="Permanent link to Are you suffering from Wordpress Plugin overload?"><img class="post_image alignnone" src="http://www.wordpress-master.com/wp-content/uploads/2009/11/wordpress-extend.png" width="307" height="150" alt="Wordpress Extend" /></a>
</p><p>I love it when I run across a certain kind of person.  You know who you are.  The type that has every possible FireFox plugin installed, some days just opening FireFox it takes 45 minutes to run through all the plugin updates.</p>
<p>One of the things I like best about Wordpress is how lightweight it is.  It&#8217;s simple, it does it&#8217;s job, highly customizable.  Plus, even though it is simple it can be made to be much more complicated through the use of plugins.  You can add just the features and abilities that you need for your site.</p>
<p>Something I dislike about other systems is maybe they are awesome because of the huge list of features, but those features can be a resource hog.</p>
<p>Quite awhile back I read an article that I can&#8217;t find right now to link.  It talked about some load tests on a few of the &#8220;frameworks&#8221; that are out there for programming.  One of them that they considered a programming framework was Drupal.  They included this because even though it is a CMS type script, it&#8217;s so robust and feature rich and can really be used as a programming framework.  The problem? Just to display nothing more than &#8220;Hello World&#8221; to a browser, it performed with a response time significantly slower than a lot of other systems to do the same.</p>
<p>I mean this makes sense in all reality.  It has so much capability that it has to dynamically load tons of classes, functions, etc.  even though all it&#8217;s doing is displaying &#8220;Hello World&#8221;.  It&#8217;s fine if you need all the features and your site is going to use them, otherwise it&#8217;s just a disability.</p>
<h2>Wordpress is Lightweight, can you keep it that way?</h2>
<p>That&#8217;s one thing that is really nice about using Wordpress.  It is so light.  And the way that plugins integrate is really nice.  You can add complete features with an upload and a click of the button.</p>
<p>Then I run into someone who asks me to help them figure out why their installation is so slow.  I take a look at their plugins screen, they have 70+ plugins uploaded, 30+ plugins activated, but only about 15 give or take actually in use.  The rest are just there because.</p>
<p>You know a spoiler might improve the performance of a race car, but not if you attach 15 of them.</p>
<p>There are always all kinds of reasons.</p>
<blockquote><p>Well the reason I have 4 ad rotators installed is because I wasn&#8217;t sure which one I liked, and I tried them all out until I decided I liked this one</p></blockquote>
<p>Here&#8217;s the thing, just by having them activated the functions that make up the plugin have to get loaded every single time a page loads. So maybe you are using one ad rotator, but enjoy the drop in performance of 4 just for fun!</p>
<p>Another point to be made, installing plugins always creates variables in your database.  Some plugins don&#8217;t properly remove these variables when disabled.  The larger your database becomes the slower it takes to pull content out of it.</p>
<h2>How long will your visitors wait to see your blog content?</h2>
<p>Keep your installations as clean as possible.  Normally, I keep extra installations of Wordpress around separate from my main.  Any good host should have the ability to create subdomains.  Install a plain installation there, or even make a copy of your installation, install the plugin there first.  ESPECIALLY, if you don&#8217;t even know if you&#8217;ll want it long term.</p>
<p>If you decide you don&#8217;t want it there is no reason to ever install it on your main Wordpress site.</p>
<p>Cause and Effect, chain of events.  Doesn&#8217;t matter if your content is good, if visitors get tired of waiting for your pages to load.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-plugin-overload.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-plugin-overload.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/wordpress-plugin-overload.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Redirecting Feed to Feedburner with htaccess</title>
		<link>http://www.wordpress-master.com/redirecting-feed-htaccess.html</link>
		<comments>http://www.wordpress-master.com/redirecting-feed-htaccess.html#comments</comments>
		<pubDate>Wed, 04 Nov 2009 06:30:35 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Setting Up Wordpress]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[9a]]></category>
		<category><![CDATA[Attempts]]></category>
		<category><![CDATA[blog content]]></category>
		<category><![CDATA[Change Address]]></category>
		<category><![CDATA[Feedburner]]></category>
		<category><![CDATA[Fun Story]]></category>
		<category><![CDATA[Gadget]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Search]]></category>
		<category><![CDATA[Htaccess File]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Logs]]></category>
		<category><![CDATA[Occasion]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[Rewritecond]]></category>
		<category><![CDATA[Several Times]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[Subscribers]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Wordpress Rss]]></category>
		<category><![CDATA[wordpress tips]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=465</guid>
		<description><![CDATA[In anything I do with a website I always keep overhead in mind.  Redirecting your RSS feed to Feedburner can easily be done with a htaccess redirect.  It doesn't have the overhead of a plugin, and it does the job.  And in the process I learned a quick little lesson about just trying to save time by grabbing others code.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.wordpress-master.com/redirecting-feed-htaccess.html" title="Permanent link to Redirecting Feed to Feedburner with htaccess"><img class="post_image alignright" src="http://www.wordpress-master.com/wp-content/uploads/2009/11/world_wide_web.jpg" width="300" height="225" alt="Post image for Redirecting Feed to Feedburner with htaccess" /></a>
</p><p>So here&#8217;s a fun story about some wasted time.  I configured feedburner a while back to use as the RSS Feed for the site.</p>
<p>I like the way Feedburner looks compared to the default RSS Feed.  The social icons are better, you can get better statistics out of the system.  Plus, it&#8217;s owned by Google.  Never hurts to supply Google with as many links to your site as possible (don&#8217;t quote me on that, I really doubt it actually matters).</p>
<p>A lot of times, I like to be a log junkie.  I sit back and hunt through my site logs on occasion.  I like to look for errors with the site, and fix them before they cause to many issues. Sometimes I even find malicious bots trolling the site and I can block them or deal with them at least.</p>
<p>Anyway, I noticed that there were several attempts to hit the Wordpress RSS feed that is the default.  The systems ( a Google Gadget, something from Yahoo, etc. ) were hitting the site on a regular basis.  It&#8217;s not that they were getting old information, but it was quite a few subscribers that weren&#8217;t getting the legitimate feed, and thus I wouldn&#8217;t see the proper tracking.</p>
<p>I started scouring the Google Search for a method to redirect the feed via a redirect in the htaccess file.  I didn&#8217;t want to use a plugin and create additional overhead when it can be done so easily with the htaccess.  And I didn&#8217;t want to spend the time to write it myself, when I&#8217;m sure it was out there several times over.</p>
<p>I found a code block from <a href="http://perishablepress.com/press/2008/03/25/redirect-wordpress-feeds-to-feedburner-via-htaccess-redux/">Perishable Press</a>:<br />
<code># temp redirect wordpress content feeds to feedburner<br />
RewriteEngine on<br />
RewriteCond %{HTTP_USER_AGENT} !FeedBurner    [NC]<br />
RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC]<br />
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ http://feeds.feedburner.com/wordpress-master/feed [R=302,NC,L]<br />
</code></p>
<p>Naturally if you are going to use this code make sure you change out my feedburner address for your own.</p>
<p>The problem was that after I added it to my htaccess it didn&#8217;t work.  I just popped it in really quickly, wasn&#8217;t paying attention at all.</p>
<p>After spending a lot more time than I wanted to spend on it, researching alternatives online.  I finally started reading comments.  There are several posts out there that all use this code, but none solved my problem.</p>
<p>Reading the comments, someone mentioned that the code has to be <strong>before</strong> the permalink rewrites that Wordpress uses.  Doh, I&#8217;m an idiot.  If I would have just spent two seconds to actually look at the code I would have realized it.  But instead I tried to save time and just do it quickly.</p>
<p>I guess in this case trying to NOT &#8220;reinvent the wheel&#8221; I cost myself a lot of unnecessary time.  Especially on something this simple that I could have just written myself.  Oh well, live and learn.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fredirecting-feed-htaccess.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fredirecting-feed-htaccess.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/redirecting-feed-htaccess.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Are you Brainstorming to &#8220;Feed&#8221; Content Ideas to your Blog?</title>
		<link>http://www.wordpress-master.com/brainstorming-to-feed-content-ideas.html</link>
		<comments>http://www.wordpress-master.com/brainstorming-to-feed-content-ideas.html#comments</comments>
		<pubDate>Mon, 02 Nov 2009 06:54:51 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Wordpress Blogging]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blog content]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Bookmarks List]]></category>
		<category><![CDATA[content ideas]]></category>
		<category><![CDATA[Couple Boxes]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Dead Horse]]></category>
		<category><![CDATA[Everything Under The Sun]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Handy]]></category>
		<category><![CDATA[Hot Topics]]></category>
		<category><![CDATA[Limited]]></category>
		<category><![CDATA[Quality Niche]]></category>
		<category><![CDATA[Reason]]></category>
		<category><![CDATA[Running]]></category>
		<category><![CDATA[Searching The Internet]]></category>
		<category><![CDATA[Settings Screen]]></category>
		<category><![CDATA[Syndicate]]></category>
		<category><![CDATA[Wp]]></category>
		<category><![CDATA[writing blog posts]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=435</guid>
		<description><![CDATA[There is no reason for me to beat the dead horse about how important content is for your site.  If you are running a blog it's really obvious,how do we brainstorm for new content ideas?  Especially if you are running a quality niche blog, it can be really easy to run out of "hot" topics for your niche. Did you know you can customize your Wordpress Admin with aggregated content about your topic for idea surfing?]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.wordpress-master.com/brainstorming-to-feed-content-ideas.html" title="Permanent link to Are you Brainstorming to &#8220;Feed&#8221; Content Ideas to your Blog?"><img class="post_image alignnone" src="http://www.wordpress-master.com/wp-content/uploads/2009/11/mashup3.png" width="300" height="221" alt="Yahoo Pipes RSS Mashup" /></a>
</p><p>There is no reason for me to beat the dead horse about how important content is for your site.  If you are running a blog it&#8217;s really obvious, how do we brainstorm for new content ideas?  Especially if you are running a quality niche blog, it can be really easy to run out of &#8220;hot&#8221; topics for your niche.</p>
<p>There are hundreds if not thousands of websites out there with writers posting content and ideas about everything under the sun.  Naturally, if you start searching the internet for a list of websites to keep on your bookmarks list, and then try to keep up with them every day you&#8217;ll end up just blowing all your time on reading instead of writing.</p>
<p>Luckily most websites these days syndicate their content with <a href="http://en.wikipedia.org/wiki/RSS">RSS Feeds</a>.</p>
<p>I use Google&#8217;s Reader to keep track of several websites.  It comes in really handy to visit one website and see the content of many websites all in one spot.</p>
<h2>Did you know you can customize your Wordpress Admin with aggregated content about your topic for idea surfing?</h2>
<div id="attachment_436" class="wp-caption alignright" style="width: 400px">
	<a href="http://www.wordpress-master.com/wp-content/uploads/2009/11/mashup1.png"><img class="size-full wp-image-436" title="mashup1" src="http://www.wordpress-master.com/wp-content/uploads/2009/11/mashup1.png" alt="Feed Reader in WP Admin" width="400" height="190" /></a>
	<p class="wp-caption-text">Feed Reader in WP Admin</p>
</div>
<p>When you log into your WP Admin you&#8217;ve probably noticed a couple boxes, one called &#8220;Wordpress Development Blog&#8221; and the other &#8220;Other Wordpress News&#8221;.</p>
<p>I&#8217;ve found that many people don&#8217;t realize that if you mouse over the title bars a little &#8220;Customize&#8221; link shows up.</p>
<p>Clicking on this link will give you settings screen so you can change the Feed you want to display here as well as the title.</p>
<div id="attachment_437" class="wp-caption alignleft" style="width: 400px">
	<a href="http://www.wordpress-master.com/wp-content/uploads/2009/11/mashup2.png"><img class="size-full wp-image-437" title="mashup2" src="http://www.wordpress-master.com/wp-content/uploads/2009/11/mashup2.png" alt="Feed Settings in WP Admin" width="400" height="217" /></a>
	<p class="wp-caption-text">Feed Settings in WP Admin</p>
</div>
<p>You can set the number of items you&#8217;d like to display as well as a few other settings such as displaying content.</p>
<p>So if you are managing a blog, maybe you don&#8217;t really need to see Wordpress Development information every time you log in.</p>
<p>Instead let&#8217;s make it a little more valuable.</p>
<p>First though, let&#8217;s consider.  Maybe we don&#8217;t want to be limited to only two feeds. Maybe we are looking at this as a method to not only keep in touch with the competition, but to also feed us as many ideas about our own content as possible.</p>
<p>So to do this we&#8217;ll need some way to create a RSS Mashup of sorts.</p>
<p>Head on over to <a href="http://pipes.yahoo.com/pipes/">Yahoo Pipes</a>.  This service is really excellent for combining RSS Feeds, and they in turn provide you with another RSS Feed of all the feeds combined.</p>
<p>I tried another site called xFruits, but I couldn&#8217;t even get their accounts to work.  I tried 2 different accounts over the course of a week and it would never work.</p>
<p>So once I created a Yahoo ID, I was able to log into their Pipes Utility.  I was pretty impressed with what you could do with this tool.</p>
<div id="attachment_438" class="wp-caption alignright" style="width: 300px">
	<a href="http://www.wordpress-master.com/wp-content/uploads/2009/11/mashup3.png"><img class="size-full wp-image-438" title="mashup3" src="http://www.wordpress-master.com/wp-content/uploads/2009/11/mashup3.png" alt="Yahoo Pipes" width="300" height="221" /></a>
	<p class="wp-caption-text">Yahoo Pipes</p>
</div>
<p>Take a look at the picture to see how I created a mashup of two feeds, and sorted the content by published date.</p>
<p>After I saved the Pipe, I just clicked over to view it and then selected the &#8220;Get as RSS&#8221;.  I plugged in my new Mashup feed in the WP Admin.</p>
<p>Now every time I log into my WP Admin I see all the content from these feeds.  Sometimes I see articles I disagree with, sometimes I see content ideas that I could expand on in more detail.  Sometimes reading through the titles I&#8217;ll get hit with a completely unique idea.</p>
<p>Either way it&#8217;s a very beneficial tool.  I&#8217;d love to hear from some readers about if this is beneficial, or any other &#8220;tricks&#8221; you might have found.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fbrainstorming-to-feed-content-ideas.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fbrainstorming-to-feed-content-ideas.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/brainstorming-to-feed-content-ideas.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Hottest Wordpress Theme on the Market just got Hotter</title>
		<link>http://www.wordpress-master.com/wordpress-thesis-theme-just-got-hotter.html</link>
		<comments>http://www.wordpress-master.com/wordpress-thesis-theme-just-got-hotter.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 19:14:11 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Good Plugins]]></category>
		<category><![CDATA[Plugin Reviews]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Wordpress Theme Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Free Ones]]></category>
		<category><![CDATA[Improvements]]></category>
		<category><![CDATA[Motto]]></category>
		<category><![CDATA[Navigation Menu]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[Niche]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[Pleasure]]></category>
		<category><![CDATA[Seo]]></category>
		<category><![CDATA[theme design]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[thesis theme]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=306</guid>
		<description><![CDATA[
I&#8217;ve been working with Wordpress it seems like forever.  I&#8217;ve tried so many different Wordpress Themes that I couldn&#8217;t count them all.
You have free ones, and if you try them you know you get what you pay for.  But free ones can still work if you are a developer, they&#8217;ll at least put [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.wordpress-master.com/wordpress-thesis-theme-just-got-hotter.html" title="Permanent link to The Hottest Wordpress Theme on the Market just got Hotter"><img class="post_image alignright" src="http://www.wordpress-master.com/wp-content/uploads/2009/10/thesis.png" width="125" height="125" alt="Thesis Wordpress Theme" /></a>
</p><p>I&#8217;ve been working with Wordpress it seems like forever.  I&#8217;ve tried so many different Wordpress Themes that I couldn&#8217;t count them all.</p>
<p>You have free ones, and if you try them you know you get what you pay for.  But free ones can still work if you are a developer, they&#8217;ll at least put you at a starting point to make your own creation.<span id="more-306"></span></p>
<p>There are a lot of paid ones as well.  As in any market some better than others.</p>
<p>It&#8217;s all about what features you need, and how well each theme can fill those needs.</p>
<p>The best paid theme I&#8217;ve ever had the pleasure of using, is the <a href="http://www.wordpress-master.com/recommends/thesis">Wordpress Thesis Theme</a>.  There are many themes/templates out there that meet specific needs for a niche set of websites, but the Thesis theme is probably the most flexible theme I&#8217;ve found.</p>
<p>And they just released a new version with all new features:</p>
<ul>
<li>custom file editor in your WordPress dashboard</li>
<li>dropdown navigation menu</li>
<li>comprehensive font color controls and new design controls</li>
</ul>
<p>There are a lot of other improvements in regards to the general design of the theme as well.  Plus what more could you want with the included SEO abilities.  I think this one theme replaces the need for several plugins, which is very cool if you think of plugins in terms of overhead. (watch our blog for an article on this later this week)</p>
<p><a href="http://www.wordpress-master.com/recommends/thesis">About Thesis — Find out more about Thesis and the DIYthemes philosophy</a></p>
<p>Here&#8217;s their motto:</p>
<p style="text-align: center;">
<div id="attachment_307" class="wp-caption alignnone" style="width: 560px">
	<a href="http://www.wordpress-master.com/recommends/thesis"><img class="size-full wp-image-307" title="thesis-theme-tap" src="http://www.wordpress-master.com/wp-content/uploads/2009/10/thesis-theme-tap.jpg" alt="Thesis Theme Motto" width="560" height="282" /></a>
	<p class="wp-caption-text">Thesis Theme Motto</p>
</div>
<p>They really meet this in my opinion.  It&#8217;s always being improved upon.</p>
<p>I&#8217;m going to put together a video later this week to show off some of the Thesis features.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-thesis-theme-just-got-hotter.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-thesis-theme-just-got-hotter.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/wordpress-thesis-theme-just-got-hotter.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
