<?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>How To Blog &#187; ScribeFire</title>
	<atom:link href="http://bradtheblogboy.com/tag/scribefire/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradtheblogboy.com</link>
	<description>blogging 102</description>
	<lastBuildDate>Fri, 14 May 2010 06:03:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Keywords In Your Post</title>
		<link>http://bradtheblogboy.com/seo/keywords-in-your-post/?source=rss</link>
		<comments>http://bradtheblogboy.com/seo/keywords-in-your-post/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 00:51:21 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[free tool]]></category>
		<category><![CDATA[good free tool]]></category>
		<category><![CDATA[good shape]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google search]]></category>
		<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[meta keywords]]></category>
		<category><![CDATA[Nathan Rice]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[ScribeFire]]></category>
		<category><![CDATA[searc]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[semantic tags]]></category>
		<category><![CDATA[tag area]]></category>
		<category><![CDATA[tag name]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[title tags]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordsfinder]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=152</guid>
		<description><![CDATA[Reading time: 2 &#8211; 4 minutes
One of the four most important aspects of writing a post is picking out the right keywords from the text.  This isn&#8217;t something often mention in your standard how to blog post.  There is only one really good free tool and I reccomend using it every time you post.  Wordsfinder [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 2 &#8211; 4 minutes</p>
<p>One of the four most important aspects of writing a post is picking out the right keywords from the text.  This isn&#8217;t something often mention in your standard <strong><a href="http://www.bradtheblogboy.com">how to blog</a></strong> post.  There is only one really good free tool and I reccomend using it every time you post.  <a href="http://www.wordsfinder.com">Wordsfinder</a> will pick out what it sees as your best go to keywords based on a Google Search.  You simply cut and paste your text into the box and it spits out a list of your best keywords.  Copy the the ready to use list, and paste it into the custom field value box in the Wordpress write/edit post page and label the key as keywords.  Remember to save or publish after this step or they won&#8217;t be part of the post&#8217;s data.</p>
<p>The second method for adding keywords requires a bit of theme editing.  I first saw this technique on <a href="http://www.nathanrice.net/">Nathan Rice&#8217;s Blog</a>.  I suggest you read his entire series on how to do Wordpress SEO. This technique will add your tags as keywords.  If you are using good tags there is absolutely no reason you shouldn&#8217;t use them as keywords.  If you are using a not so good program to autotag like simple tags, you should avoid this method as it could cause google to think you are keyword stuffing. (Stuffing equals reduced pagerank) However if you use an intelligent tagging plugin that uses semantic tags, like Calaise archive or autotagger or my favorite Tagaroo you are in good shape.  Simply paste the keywords you got from Wordsfinder into the tag area and away you go.<span id="more-152"></span></p>
<p>This is where the theme editing needs to be done.<br />
In the header.php  add this below the title tags &lt;title&gt;&lt;/title&gt;<br />
<textarea cols="35" rows="3">&lt;br /&gt; &lt;?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;&lt;br /&gt; &lt;meta name=&#8221;description&#8221; content=&#8221;&lt;?php the_excerpt_rss(); ?&gt;&#8221; /&gt;&lt;br /&gt; &lt;?php csv_tags(); ?&gt;&lt;br /&gt; &lt;?php endwhile; endif; elseif(is_home()) : ?&gt;&lt;br /&gt; &lt;meta name=&#8221;description&#8221; content=&#8221;&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;&#8221; /&gt;&lt;br /&gt; &lt;?php endif; ?&gt;&lt;br /&gt; </textarea></p>
<p>In your functions.php add the following in the line above ?&gt;</p>
<p><textarea cols="35" rows="3">function csv_tags() {&lt;br /&gt;     $posttags = get_the_tags();&lt;br /&gt;     foreach((array)$posttags as $tag) {&lt;br /&gt;         $csv_tags .= $tag-&gt;name . &#8216;,&#8217;;&lt;br /&gt;     }&lt;br /&gt;     echo &#8216;&lt;meta name=&#8221;keywords&#8221; content=&#8221;&#8216;.$csv_tags.&#8217;&#8221; /&gt;&#8217;;&lt;br /&gt; }&lt;br /&gt; </textarea></p>
<p>Before undertaking this step I really reccomend you read <a href="http://www.nathanrice.net/blog/ultimate-guide-to-wordpress-seo-meta-keywords/">Nathan&#8217;s fine article</a> on the hows and whys of meta keywords.</p>
<p>Post 73 of 100 of <a href="”http://www.bradstinyworld.com”">Brad’s Tiny World</a> Scribefire Challenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/seo/keywords-in-your-post/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Choose Your Keywords</title>
		<link>http://bradtheblogboy.com/seo/choose-your-keywords/?source=rss</link>
		<comments>http://bradtheblogboy.com/seo/choose-your-keywords/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 23:21:39 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[Courtney Tuttle]]></category>
		<category><![CDATA[daily search]]></category>
		<category><![CDATA[density]]></category>
		<category><![CDATA[fewer search results]]></category>
		<category><![CDATA[free keywords]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[MIL]]></category>
		<category><![CDATA[niche]]></category>
		<category><![CDATA[optional fields]]></category>
		<category><![CDATA[personalization]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phrase]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[ScribeFire]]></category>
		<category><![CDATA[searc]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[search results]]></category>
		<category><![CDATA[single word]]></category>
		<category><![CDATA[tuttle]]></category>
		<category><![CDATA[word phrases]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=141</guid>
		<description><![CDATA[Reading time: 2 &#8211; 3 minutes
One of the most important aspects of being a successful blogger is choosing your keywords carefully.  This is just not something most people do when they learn how to blog.  I am going to run through a couple of steps for you really quick that will help you figure out [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 2 &#8211; 3 minutes</p>
<p>One of the most important aspects of being a successful blogger is choosing your keywords carefully.  This is just not something most people do when they learn <strong>how to blog</strong>.  I am going to run through a couple of steps for you really quick that will help you figure out your keywords.</p>
<ol>
<li>Find out how you are ranked at <a href="http://www.googlerankings.com/ultimate_seo_tool.php">Google Rankings</a>.  I just changed mine here so google isn&#8217;t ranking me on the new words as well as I would like.  In single word phrases I top out with blog at 11.18% density which is pretty respectible if there were more posts and fewer search results for it.  My top three word phrases are Wordpress Option Field and Wordpress Optional Fields, based on a recent post.  What I really want to be rated on is <strong>How To Blog</strong>.</li>
<li>Once you know what you are rated on it is time to decide what you want to be rated on.  I use <a href="http://freekeywords.wordtracker.com/">Free Keywords</a> which was originally suggested on <a href="http://www.courtneytuttle.com">Courtney Tuttle&#8217;s Blog</a>.  Start searching for keywords based on your general blog niche.  This is how I found <strong>How To Blog</strong>.  What you want is a keyword or phrase that has no more than three words to it.  The more daily search results you have the better off you are.</li>
<li>Once you have a particularly good keyword or phrase you need to figure out how it plays out on google.  Put your keyword or phrase in quotes and search.  While Google Personalization can really screw up the ranking of your results, it will have no effect on how many results it returns.<br />
<a href="http://bradtheblogboy.com/wp-content/uploads/2008/10/how-to-blog-google-searc2.gif?source=rss"title="how-to-blog-google-searc" rel="lightbox[pics141]" ><img class="attachment wp-att-142 alignleft" src="http://bradtheblogboy.com/wp-content/uploads/2008/10/how-to-blog-google-searc2.gif" alt="how-to-blog-google-searc" width="402" height="76" /></a><a title="how-to-blog-google-searc" rel="lightbox[pics141]" href="http://bradtheblogboy.com/wp-content/uploads/2008/10/how-to-blog-google-searc2.gif"><br />
</a></li>
<li>Optimize your choice by looking for a high number of daily searches and a low number, under a million, search results.  Look for how to use these new keywords in the near future.</li>
</ol>
<p>I will revisit this post with you from time to time and let you see how my changes affect my placement for these keywords without stuffing the keywords where they don&#8217;t belong.</p>
<p>Post 72 of 100 of <a href="”http://www.bradstinyworld.com”">Brad’s Tiny World</a> Scribefire Challenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/seo/choose-your-keywords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Custom Fields</title>
		<link>http://bradtheblogboy.com/how-to/what-else-you-should-be-reading/wordpress-custom-fields/?source=rss</link>
		<comments>http://bradtheblogboy.com/how-to/what-else-you-should-be-reading/wordpress-custom-fields/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 21:45:36 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[What Else You Should Be Reading]]></category>
		<category><![CDATA[Author]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[Bloggers]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[functionality]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[possible applications]]></category>
		<category><![CDATA[ScribeFire]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web design blog]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/what-else-you-should-be-reading/wordpress-custom-fields/</guid>
		<description><![CDATA[Reading time: 3 &#8211; 5 minutes
The least utilized option in Wordpress, the custom field, is also quite possibly the most powerful function of the entire platform.  I have been writing up my own tutorials on this option for several days now and thought I would share with you a few of the other great [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 3 &#8211; 5 minutes</p>
<p>The least utilized option in Wordpress, the custom field, is also quite possibly the most powerful function of the entire platform.  I have been writing up my own tutorials on this option for several days now and thought I would share with you a few of the other great posts on the subject.</p>
<p><a href="http://www.oakinnovations.co.uk/blog/2007/11/26/the-top-5-uses-for-wordpress-custom-fields/"> The Top 5 Uses for Wordpress Custom Fields  by  Oak Innovations Blog</a></p>
<blockquote><p>For the vast majority of bloggers, this incredibly usefull, and versatile piece of functionality goes unused. At the moment you may be thinking that the reason you don’t use it, is that you have no use for it. This may very well be true but, its also likely that no one has really explained what’s possible.</p></blockquote>
<p><a href="http://www.kriesi.at/archives/how-to-use-wordpress-custom-fields">Learn how to use Wordpress Custom Fields | Kriesi.at &#8211; new media design</a></p>
<blockquote><p>WordPress gives an author the ability to add extra data to each written post and page. This data is called meta-data and is stored in custom fields.</p></blockquote>
<p><a href="http://www.quickonlinetips.com/archives/2007/02/wordpress-custom-fields-contest/">WordPress Custom Fields Contest</a></p>
<blockquote><p>If you are a wordpress blogger, how many times have you used the often overlooked feature called Custom Fields. It is sitting below this post page as I type and though I look at it everyday, I never got around to using it. Technosailor is organizing the WordPress Custom Fields Contest to bring forth the usefulness of this feature and its possible applications.</p></blockquote>
<p><a href="http://performancing.com/wordpress-tips/jazz-your-site-28-ways-use-wordpress-custom-fields">Jazz Up Your Site: 28 Ways To Use WordPress Custom Fields | Performancing.com</a></p>
<blockquote><p>Reasons To Use Custom Fields</p>
<p>You create a custom field, then choose on a post by post basis what information you will add. That information can be manipulated by custom WP/PHP code to present additional textual or visual content when a visitor views a post page. To summarize:</p>
<p>1. Add metadata for reporting or other purposes.<br />
2. Add visually cohesive elements to your site.<br />
3. Manipulate information and control its display programmatically.<br />
4. Make global changes across all your posts with a single code change, instead of manually updating each post.</p>
<p>The lists below show some ways that WP custom fields can be used to provide more textual and visual info to your site visitors. If you decide to change something, say a border or background or even placement on the post page, without custom fields you would have to make changes manually to each and every post. If you have hundreds of posts, you&#8217;d have a daunting task. With custom fields, you have structure and homogeneity through custom handler code.</p></blockquote>
<p><a href="http://www.redswish.co.uk/the-power-of-wordpress-custom-fields/">redswish &#8211; a web design blog » The power of Wordpress Custom Fields</a></p>
<blockquote><p>I can’t believe I’ve been playing with Wordpress for so long and never explored the Custom Fields feature. A website I’ve been working recently has required me to push the boundaries of Wordpress, or more appropriately my understanding and knowledge of it. In doing so I’ve bravely slipped deeper into the Advanced Options and lived to tell the tale &#8211; the tale of the Custom Fields…</p></blockquote>
<p><a href="http://5thirtyone.com/archives/875">WordPress Custom Fields; laying text over your lead graphic</a></p>
<blockquote><p>WordPress Custom Fields; laying text over your lead graphic</p>
<p>For WordPress users, there are certain scenarios when the typical reverse chronological presentation of content is just not enough. I have experimented with different methods of presenting content on <a href="http://5thirtyone.com/">5thirtyone.com</a> each time a redesign is uploaded &#8211; from the text-centric to the image heavy version in use right now. With hundreds of WordPress driven blogs being published on a daily basis, it’s difficult to stand out; even more so if you stick to the standard two-column blog layout.</p></blockquote>
<p><a href="http://theundersigned.net/2006/09/wordpress-how-to-custom-fields/">The undersigned » Blog Archive » WordPress how-to: Custom Fields</a></p>
<blockquote><p>WordPress how-to: Custom Fields</p>
<p>Most WordPress users have seen the custom fields section when they write a new post or create a page &#8211; but what is it exactly?</p></blockquote>
<p>Post 12 of 100 of <a href="%E2%80%9Dhttp://www.bradstinyworld.com%E2%80%9D">Brad’s Tiny World</a> Scribefire Challenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/how-to/what-else-you-should-be-reading/wordpress-custom-fields/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Moving Beyond The Amateur Blog</title>
		<link>http://bradtheblogboy.com/how-to/moving-beyond-the-amateur-blog/?source=rss</link>
		<comments>http://bradtheblogboy.com/how-to/moving-beyond-the-amateur-blog/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 15:48:51 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[bot]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[MIL]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[Professional]]></category>
		<category><![CDATA[ScribeFire]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[search results]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[USD]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=132</guid>
		<description><![CDATA[Reading time: 3 &#8211; 5 minutes
If you are reading this post then you have taken your first step in moving beyond the amateur blog level.  The first thing you need to accept is you don&#8217;t know everything and you should be reading a lot of blogs how to get set up right.  None of us [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 3 &#8211; 5 minutes</p>
<p>If you are reading this post then you have taken your first step in moving beyond the amateur blog level.  The first thing you need to accept is you don&#8217;t know everything and you should be reading a lot of blogs how to get set up right.  None of us know everything, and I am more than happy to point you to the people who know a lot more than me on any subject.  That said let me tell you what we can all agree on.</p>
<ul>
<li>Figure out why you want to blog.  This is the most important step and the reason most people never bother with.  Deciding you want to blog for money is perfectly acceptable.</li>
<li>Once you figure out why you want to blog you need to decide on what your blog is to be about.  This is one specific thing that your blog will be known to the search engines for.  This is going to be your keyword phrase.  See my post on picking your keywords for more information.  The short of it is you want to find something that defines your blog with a lot of daily searches, but not very many search results.  This choice will define your blog for a very long time so choose wisely.</li>
<li>Once you know your primary focus you can start to choose a domain name.  Choosing something simple like your name seems easy enough, but frankly that isn&#8217;t necessarily the best choice either.  your name is a particularly bad choice if you want to sell your blog later.  Some schools of thought are Google will look more favorably on you if your keyword and your domain name are similar.  Once you decide on a Domain name register it.  You can do this almost anywhere so I suggest looking for a cheap place that has been around a while.  You can host anywhere once you have the domain, but if you lose the domain because you were dicking around making other decisions, then you are SOL and have to repeat steps two and three.</li>
<li>Choose a blog platform and a basic theme design.  The fact is Google loves wordpress best of all, but without a well designed theme it doesn&#8217;t matter what kind of advantage you get from the platform you are taking blind swings.  Not only will you need to choose a good theme, you need to be able to alter or fix it yourself, unless you have a paid tech guy.  it doesn&#8217;t matter how good your writing is, if you don&#8217;t look profession to your readers your won&#8217;t be seen as a professional.  This goes doubly for google and every other search engine that could care less what sort of pithy commentary you make.  Search engines want the nitty gritty of posts.  They want meta information to match the text.  They want images that have full SEO treatments since they can&#8217;t interpret the visual.  They want to know what your navigation priorities are.</li>
<li>Last but not least is you want to choose your host.  You need to do your homework and not let some affectation pull at your heartstrings.  You can switch hosts as you like.  Many hosts these days are even on month to month agreements so switching is easy.  The biggest thing to look for is how fast sites using the network move.  If the cost is next to nothing for a whole lot of promises beware.  Any company that doesn&#8217;t charge a minimum of $10 a month and promises the moon probably means that have three or four times too many sites for their bandwidth and if you ever try and use as much as the promised they will likely cancel you account.</li>
</ul>
<p>If you can manage these steps you are well on your way to moving beyond the amateur blog level.</p>
<p>Post 9 of 100 of <a href="”http://www.bradstinyworld.com”">Brad’s Tiny World</a> Scribefire Challenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/how-to/moving-beyond-the-amateur-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Guest Book</title>
		<link>http://bradtheblogboy.com/wordpress-2/theme/the-guest-book/?source=rss</link>
		<comments>http://bradtheblogboy.com/wordpress-2/theme/the-guest-book/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 11:07:30 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[Theme]]></category>
		<category><![CDATA[average website owner]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[Bloggers]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[dofo]]></category>
		<category><![CDATA[dofollow]]></category>
		<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[LiveJournal]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[screen saver]]></category>
		<category><![CDATA[ScribeFire]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=122</guid>
		<description><![CDATA[Reading time: 3 &#8211; 4 minutes
In the early days of web design one of the few interactive things you could do with your readers was set up a guest book.  At first this was next to impossible because almost anyone and everyone who had a website was operating on free sites like Geocities, Angelfire, [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 3 &#8211; 4 minutes</p>
<p>In the early days of web design one of the few interactive things you could do with your readers was set up a guest book.  At first this was next to impossible because almost anyone and everyone who had a website was operating on free sites like Geocities, Angelfire, or Tripod.  There was no cgo access unless you paid for it, so there was no interaction beyond the simple mail form.  Eventually most of them had heard the call for interaction and offered up ready made guest books. By that time it was really too late to do anything about it, blogging had been invented and was taking quick hold on sites like LiveJournal and <a href="http://www.blogger.com">Blogger</a>.  The world of interactivity was upon the average website owner, and we went from simple users to publishers.</p>
<p>The advent of blogging with threaded post and comments we respond to or at the very least should be responding to left behind the old guest book format.  Users could now interact with authors directly over on subject specific ideas.  Simply put the guest book was stiff, bereft of use, pushing up digital daisies, had run down the curtained screen saver, had emptied the recycle bin with ccleaner, overwritten multiple times with randomized ones and zeroes, and joined auto-starting background midi files as things Skippy should never put on a site.  The guest book was and ex-webpage!  That was until I figured out a use for it.<span id="more-122"></span></p>
<p>I know you are thinking this guy is ought of his bloody mind.  Well I might be, but never the less I know how to make the guest book useful once again.  Every blogger gets comment like &#8216;this is nice&#8217; and &#8216;I like the post&#8217;.  For those of us kind bloggers using a dofollow system this is annoying crap.  However with a nofollow guest book and a <a href="http://www.zirona.com/software/wordpress-move-comments/">move comments plugin</a> we can preserve those comments, because some of them actually mean what they say and could give a damn about the backlink, and keep our blogs from being fodder for spammers.  The second plugin you will want if you wish to keep dofollow status is a <a href="http://yoast.com/wordpress-noindex-specific-posts-and-pages/">conditional plugin</a> that allows for conditional nofollow noindex posts and pages.</p>
<p>Once you have your plugin installed you can start by creating the guest book.  If you are a nofollow blog the process is pretty simple, just create called guest book add a few lines of text and stick the post link in your menu.  Alternately if your theme allows for comments on pages you can make it a page and it should automatically go into your navigation structure.  Assuming you are a kind dofollow blogger honoring your readers comments, you are going to need to do a few things differently for the guest book to work like it should and not screw up the rest of your blog.</p>
<p>After activating the plugins the next thing you will want to do is make a copy of your single.php and rename it guestbook_template.php.  This is the file we will edit.  Top the top of this file you will want to add the following code:</p>
<p>&lt;?php<br />
/*<br />
Template Name: guestbook<br />
*/<br />
?&gt;</p>
<p>Once this page is uploaded create a new page using the guestbook page template.  Say a few words of kind warning about the kind of comments that should go in posts and the kind that belong here.  Set the page to nofollow and noindex and you are ready to go.  Move your comments at will and enjoy your new found guest book.</p>
<p>Post 8 of 100 of <a href="%E2%80%9Dhttp://www.bradstinyworld.com%E2%80%9D">Brad’s Tiny World</a> Scribefire Challenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/wordpress-2/theme/the-guest-book/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blogging For Bucks</title>
		<link>http://bradtheblogboy.com/monetizing-your-blog/blogging-for-bucks/?source=rss</link>
		<comments>http://bradtheblogboy.com/monetizing-your-blog/blogging-for-bucks/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 14:15:25 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[Monetizing Your Blog]]></category>
		<category><![CDATA[ad network;]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[Bloggers]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[CEO and President]]></category>
		<category><![CDATA[contextual advertising;]]></category>
		<category><![CDATA[Darren Rowse]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Hart]]></category>
		<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[John Chow;]]></category>
		<category><![CDATA[John Cow;]]></category>
		<category><![CDATA[Kristopher B. Jones;]]></category>
		<category><![CDATA[Kristopher Jones;]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[Pepperjam Network]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[ScribeFire]]></category>
		<category><![CDATA[USD]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=79</guid>
		<description><![CDATA[Reading time: 3 &#8211; 5 minutes
If you read my blog, it is most likely you are either a) a friend who is trying to get inside my head, or b) want to make money from blogging. I am going with the latter. You, like me, may be frustrated with Google for a variety of reasons [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 3 &#8211; 5 minutes</p>
<p>If you read my blog, it is most likely you are either a) a friend who is trying to get inside my head, or b) want to make money from blogging. I am going with the latter. You, like me, may be frustrated with Google for a variety of reasons that we won&#8217;t go into, but I am here to say there are alternatives. I am partial to <a href="http://www.bidvertiser.com/bdv/bidvertiser/bdv_ref_publisher.dbm?Ref_Option=pub&amp;Ref_PID=149758">BidVertiser</a> myself, but I am looking into a number of affilate programs right now to replace Google on The <a href="http://www.hartblognetwork.net">Hart Blog Network</a> blogs.</p>
<p>The latest new affilate I have found is ScribeFire which I also see Darren Rowse has up on his website, <a href="http://www.problogger.net">Pro Blogger</a>.</p>
<p>John Cow wrote up about the soon to be gone <a href="http://www.johncow.com/say-good-bye-to-adsense-referrals/">Adsense Refferals</a>.</p>
<blockquote><p>Instead of their Adsense Referral program they are now going to use the <a href="http://www.google.com/ads/affiliatenetwork/">Google Affiliate Network</a>.  What this is going to allow is now publishers are going to apply for an  advertiser program and then get paid based on advertiser-defined  actions instead of the usual clicks or impressions.</p></blockquote>
<p>Darren Rowse of Pro Blogger has an interview with Kristopher Jones of Pepperjam Network</p>
<blockquote><p>Earlier in the week I posted that PepperJam Network was giving all <a href="http://www.problogger.net/archives/2008/07/03/want-10-sign-up-for-the-pepperjam-affiliate-network-today/">new publishers who signed up with their network a signup bonus of $10</a>. Today I’ve managed to get a quick interview with <a href="http://www.pntra.com/t/QDtEPz9DO0FERDtBQ0M">Pepperjam Network’</a><a href="http://www.pntra.com/t/QDtEPz9DO0FERDtBQ0M">s</a> CEO and President Kristopher B. Jones to ask him about the network, why  he started it and what tips he could give us as publishers for using it  in a way that earns us the most money.</p></blockquote>
<p>John Chow has been pushing NeverBlue Ads pretty hard of late. I am also interested and owe them a return phone call. It seems these days even the bigger blogs are abandoning google so fast we can smell smoke. Possibly it is the guys at google taking the torch to ever more bloggers. It is hard to say for sure.</p>
<p><a href="http://www.thetechzone.com/neoads/adclick.php?bannerid=169&amp;zoneid=43&amp;source=&amp;dest=http%3A%2F%2Fnbjmp.com%2Fclick%2F%3Fs%3D904%26c%3D8357%26subid%3DbannJCB08%26promo_code%3DJCBLOG1" target="_blank"><img title="Please Visit my Sponsor" src="http://www.thetechzone.com/neoads/adimage.php?filename=neverblueads-panel-300250.gif&amp;contenttype=gif" border="0" alt="Please Visit my Sponsor" width="300" height="250" /></a></p>
<div id="beacon_169" style="position: absolute; left: 0px; top: 0px; visibility: hidden;"><img style="width: 0px; height: 0px;" src="http://www.thetechzone.com/neoads/adlog.php?bannerid=169&amp;clientid=148&amp;zoneid=43&amp;source=&amp;block=0&amp;capping=0&amp;cb=fe2f12667820e12e93228250e5e572a4" alt="" width="0" height="0" /></div>
<p><noscript></noscript></p>
<p>Earlier in the week John also wrote on <a href="http://www.johnchow.com/a-little-shopping-can-make-you-money/">TinyMasive.com</a></p>
<blockquote><p>What do you get when you combine the contextual advertising of Google  AdSense with an interactive shopping widget that can offer some pretty  good deals to the visitors of your site. In some respects, <a href="http://www.tinymassive.com/">TinyMassive.com</a> may just look like another shopping-based ad network, but over the course of doing this <a href="http://www.johnchow.com/go/reviewme.php">review</a>, I came to discover that it has a few unique qualities as well.</p></blockquote>
<p>There are many other networks available. Some of them are sketchy. Some of them just hard to get into. Some of them only in beta, like Yahoo. They are out there though and for those who are frustrated with Google, fear not there are options.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/monetizing-your-blog/blogging-for-bucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging Made Easy&#8230; Easier&#8230; ish</title>
		<link>http://bradtheblogboy.com/how-to/other-blogging-tools/bloggging-made-easy-easier-ish/?source=rss</link>
		<comments>http://bradtheblogboy.com/how-to/other-blogging-tools/bloggging-made-easy-easier-ish/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 15:42:34 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[Other Blogging Tools]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[Bloggging]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[bot]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[D-List]]></category>
		<category><![CDATA[Digg]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[Genie]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[link search engines]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[LiveJournal]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[MySpace]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[ScribeFire]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[TypePad]]></category>
		<category><![CDATA[usercontent]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=33</guid>
		<description><![CDATA[Reading time: 2 &#8211; 4 minutes
One of the best tools I have found of recent to help improve our blogging is the ScribeFire extension for the Firefox browser.  It allows you to automatically post to your blog while surfing.  It works for self-hosted WordPress, WordPress.com TypePad.com LiveJournal.com, and  a few others.  [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 2 &#8211; 4 minutes</p>
<p>One of the best tools I have found of recent to help improve our blogging is the <a href="http://www.scribefire.com/">ScribeFire</a> extension for the Firefox browser.  It allows you to automatically post to your blog while surfing.  It works for self-hosted WordPress, <a href="http://bradstinyworld.wordpress.com">WordPress.com</a> <a href="http://TypePad.com">TypePad.com</a> <a href="http://bradthedog.livejournal.com/">LiveJournal.com</a>, and  a few others.  My hopes were dashed that it wouldn&#8217;t recognize  <a href="http://www.myspace.com/bradthedog">MySpace</a>, but that was just too much to really hope for.  <a href="http://www.myspace.com/bradthedog">MySpace </a>wants you on site or not at all, and frankly that is just too damned big of time waste for me right now.  It is a good resource to try and tap, but at this point I don&#8217;t have the time to repost everything to <a href="http://www.myspace.com/bradthedog">MySpace</a> on top of trying to write content, upgrading my themes, editing my novel, etc.  The next great thing about <a href="http://www.scribefire.com">ScribeFire</a> is it will allow me to switch between blog accounts easily something I can&#8217;t do when I use to blog the things I <a href="http://bradtheblogboy.com?source=rss">Digg</a>.  It will also allow you to post in draft mode so you can use all the fancy Meta tools I am sure I will get around to preaching on later this week.</p>
<p>The next great Firefox blogging tool is a custom hack of the main CSS file ( usercontent.css ) which decides how things will look while browsing. <a href="http://www.searchenginegenie.com/seo-blog/2005/02/detecting-relnofollow-way-to-detect.html">Search Engine Genie</a> shows you how to highlight any rel=nofollow links. Why is this important?  As a blogger if you comment or pay for your link to be hosted somewhere that that has a rel=nofollow added to the link search engines will ignore you and not follow the link back to your site.  There are many reasons to be both a do follow and a no follow blogger, but those are for another lesson.  To get your name and site indexed, I would suggest posting relevant comments on any of the blogs I have listed in my <a href="http://bradtheblogboy.com/28/?source=rss">D-List</a></p>
<p>If you get the coding done right it should look something like this<br />
<a href="http://www.google.com"rel="nofollow" >Google Search</a></p>
<p>You can mass around with it by using your own coded file with this link &lt;a href=&#8221;http://www.google.com&#8221; rel=&#8221;nofollow&#8221;&gt;Google Search&lt;/a&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/how-to/other-blogging-tools/bloggging-made-easy-easier-ish/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

