
<?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>brandontreb.com &#187; Wordpress</title>
	<atom:link href="http://brandontreb.com/category/nerdyness/wordpress-nerdyness/feed/" rel="self" type="application/rss+xml" />
	<link>http://brandontreb.com</link>
	<description>Code, Nerdyness, and Nonsense</description>
	<lastBuildDate>Wed, 07 Jul 2010 00:23:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Feedburner Anywhere Plugin Released</title>
		<link>http://brandontreb.com/feedburner-anywhere-plugin-released/</link>
		<comments>http://brandontreb.com/feedburner-anywhere-plugin-released/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 23:00:49 +0000</pubDate>
		<dc:creator>brandontreb</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[Feedburner]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[subscriber]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://brandontreb.com/?p=833</guid>
		<description><![CDATA[I have just released another WordPress plugin called Feedburner Anywhere. What it does is allow you to display your RSS subscriber count anywhere on your blog. You have the choice of using the built-in widget, embedding it in your posts/pages, or a combination of both. Check out my sidebar for an example of usage. Download [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div class="wp-caption aligncenter" style="width: 198px"><a href="http://www.crunchbase.com/company/feedburner"><img title="Image representing FeedBurner as depicted in C..." src="http://www.crunchbase.com/assets/images/resized/0000/3292/3292v1-max-250x250.png" alt="Image representing FeedBurner as depicted in C..." width="188" height="44" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
</div>
<p>I have just released another WordPress plugin called Feedburner Anywhere.</p>
<p>What it does is allow you to display your RSS subscriber count anywhere on your blog.</p>
<p>You have the choice of using the built-in widget, embedding it in your posts/pages, or a combination of both.</p>
<p>Check out my sidebar for an example of usage.</p>
<p><a href="http://wordpress.org/extend/plugins/feedburner-anywhere/">Download Feedburner Anywhere at WordPress.org</a></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/a163a219-5486-4b37-b958-bc2e76dc02f2/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=a163a219-5486-4b37-b958-bc2e76dc02f2" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://brandontreb.com/feedburner-anywhere-plugin-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Coding: Programmatically Add Post Tags (and other meta info)</title>
		<link>http://brandontreb.com/wordpress-coding-programmatically-add-post-tags-and-other-meta-info/</link>
		<comments>http://brandontreb.com/wordpress-coding-programmatically-add-post-tags-and-other-meta-info/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 17:01:45 +0000</pubDate>
		<dc:creator>brandontreb</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[programmatically add tags]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress recipe]]></category>
		<category><![CDATA[wordpress tags]]></category>

		<guid isPermaLink="false">http://brandontreb.com/?p=812</guid>
		<description><![CDATA[In this tutorial, I will be showing you how to programatically add tags to Wordpress posts.  In addition to tags, I will show you how to update any field for a given post.]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://haacked.com/images/haacked_com/WindowsLiveWriter/CategoriesvsTags_833F/561962_price_tag[3].jpg" title="Tags" class="aligncenter" width="600" /><br />
I was recently working on a script that imports from a custom blogging platform into WordPress and had some need to programmatically add post keywords.</p>
<p>The script to do this is actually quite simple and can be used to update any post attribute.</p>
<p>Here is the code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Create the post array</span>
<span style="color: #000088;">$post</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
	<span style="color: #0000ff;">'ID'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">5</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'tags_input'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'foo,bar,baz'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		
&nbsp;
<span style="color: #666666; font-style: italic;">// Update the post</span>
wp_update_post<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This will assign the keywords &#8220;foo&#8221;, &#8220;bar&#8221;, and &#8220;baz&#8221; to the post with ID 5.  This task seems trivial, however it&#8217;s very powerful when you think about automation.  For example, you could write a script to scrape a google search for your target keyword and find related keywords for each of your posts automatically.  Hrm&#8230; plugin idea?</p>
<p>Give it a shot.  More info on available parameters can be found on <a href="http://codex.wordpress.org/Function_Reference/wp_insert_post">WordPress&#8217; site here</a></p>
<p>Here are some of the other fields that you are able to update this way:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">defaults <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
<span style="color: #0000ff;">'post_status'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'draft'</span><span style="color: #339933;">,</span> 
<span style="color: #0000ff;">'post_type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'post'</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'post_author'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$user_ID</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'ping_status'</span> <span style="color: #339933;">=&gt;</span> get_option<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'default_ping_status'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> 
<span style="color: #0000ff;">'post_parent'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'menu_order'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'to_ping'</span> <span style="color: #339933;">=&gt;</span>  <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'pinged'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'post_password'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'guid'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'post_content_filtered'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'post_excerpt'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'import_id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Happy WPCoding!</p>
]]></content:encoded>
			<wfw:commentRss>http://brandontreb.com/wordpress-coding-programmatically-add-post-tags-and-other-meta-info/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin Development: Your First Plugin</title>
		<link>http://brandontreb.com/wordpress-plugin-development-your-first-plugin/</link>
		<comments>http://brandontreb.com/wordpress-plugin-development-your-first-plugin/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 00:30:33 +0000</pubDate>
		<dc:creator>brandontreb</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress filters]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wordpress plugin programming]]></category>

		<guid isPermaLink="false">http://brandontreb.com/?p=778</guid>
		<description><![CDATA[<p>In this tutorial, I will show you the basics of creating a simple Wordpress plugin.  After completing it, you will have the knowledge to expand upon it and create your own Wordpress plugins.</p>


]]></description>
			<content:encoded><![CDATA[<h4>Introduction</h4>
<p>Creating plugins for WordPress seems like a daunting task at first, but the process is actually quite simple.  WordPress&#8217; APIs are very elegant and make plugin development a breeze.</p>
<p>The documentation for writing a plugin can be found <a href="http://codex.wordpress.org/Writing_a_Plugin">here</a>.  Make sure you bookmark it as you will be referring to the documentation quite a bit as you require more functionality.</p>
<h4>WordPress Actions And Filters</h4>
<p>When we talk about creating a plugin for WordPress, it usually refers to extending the functionality.  This could be something as simple as replacing all of the colon-parens with smilies or as complex as doing complete SEO optimization.  Whatever you want to create, chances are you will have to hook into a WordPress Action or Filter.</p>
<p>WordPress Filters are called any time there is data. They are essentially a chain of functions that will be called in order to work on the data in some way.  For example, when WordPress displays the content of your post, rather than it saying &lt;?php echo $content; ?&gt;, it calls the function &lt;?php the_content(); ?&gt;.  Calling this function will invoke the chain of functions to be applied to the content.</p>
<p>To hook a function into this chain, you will use the add_filter function of WordPress.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'myFunc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> myFunc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   <span style="color: #666666; font-style: italic;">// Do Something to the content</span>
   <span style="color: #b1b100;">return</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>In the code above our function called myFunc will be called every time the content is displayed in a WordPress post.  I will be explaining the is more detail later in this post.</p>
<p>With the knowlege of actions and filters behind you, you are ready to write your first plugin.</p>
<h4>Setting Up</h4>
<p>The plugin we will be creating is a Word Filter plugin. It could be useful on a blog with multiple authors as a swear word filter.  We will be replace all of the &#8220;naughty words&#8221;, which we define with a substitue.</p>
<p>The first thing you want to do is FTP into your Worpdress site and create the plugin folder.  The location of the folder should be as follows.</p>
<p><strong>/wp-content/plugins/word_filter</strong></p>
<p>Note that any time you create a plugin, it must go inside of the WordPress plugins folder.</p>
<p>Now create a file of the same name in this folder (word_filter.php). This will be the file that will hold all of our plugin code.  Just to reiterate, you should now have a file at this path:</p>
<p><strong>/wp-content/plugins/word_filter/word_filter.php</strong></p>
<p>Now we are ready to begin editing the file&#8230;</p>
<h4>Adding the Meta Information</h4>
<p>In order to identify your plugin (and give you credit for it), you must add the following information to the top of your plugin file.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*
Plugin Name: Word Filter
Plugin URI: http://brandontreb.com/
Description: This plugin filters out certain words in a post.  Could be used as a swear word filter or just a global find and replace.
Version: 1.0
Author: Brandon Trebitowski
Author URI: http://brandontreb.com
*/</span></pre></div></div>

<p>All of this meta information will be used to identify the plugin.  When the user goes to activate it, all of this info will be displayed in their admin panel.  It will look something like this:</p>
<p><a href="http://brandontreb.com/wp-content/uploads/2010/03/Screen-shot-2010-03-10-at-9.46.09-AM.png"><img src="http://brandontreb.com/wp-content/uploads/2010/03/Screen-shot-2010-03-10-at-9.46.09-AM-500x31.png" alt="" title="Screen shot 2010-03-10 at 9.46.09 AM" width="500" height="31" class="alignleft size-medium wp-image-790" /></a></p>
<p>Coding time&#8230;</p>
<h4>Writing the Code</h4>
<p>The first bit of code for our word filter is the array of words to be replaced.  We will be using associative arrays where the key will be the words we are searching for and the values will be their replacements.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Array of replacements</span>
<span style="color: #000088;">$search_array</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'idiot'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'nice person'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'shutup'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'please be quite'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'hate'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'love'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>As you can see, the word &#8216;idiot&#8217; will be replaced with the words &#8216;nice person&#8217;, etc&#8230;  You could do any amount of replacement here.</p>
<p>The next step is to write our function that will do the replacing.  We will call this function word_filter.  One thing you need to be aware of is the function must take exactly one argument.  This is because we will be hooking into the the_content filter of WordPress.  When our function gets called by the system, it will pass in the post content for every post that gets displayed. Here is what the function will look like.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> word_filter<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$search_array</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">// Modify the content</span>
	<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$search_array</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$find</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$replace</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$find</span><span style="color: #339933;">,</span><span style="color: #000088;">$replace</span><span style="color: #339933;">,</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">// Return the content</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Pretty simple ehh? We loop over the $search_array and retrieve its keys and values.  We then substitue the $find string with the $replace string in the post $content.  Finally, we RETURN THE CONTENT.  I emphasized that because it is very important.  Since you are running this function in a chain of others, you must return the content so that the next function can process it.  If you don&#8217;t the chain is broken and your posts won&#8217;t contain any content.</p>
<p>The last thing that must be done is we must hook into the the_content filter of WordPress.  Again, this is how we get our function added to the chain.  To do this, simply add the following line.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Make sure our fn gets called before displaying the content</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'word_filter'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This is just one of the many <a href="http://codex.wordpress.org/Plugin_API">Filters</a> that you are able to hook in to.</p>
<h4>Putting it all together</h4>
<p>When reading tutorial, I generally like to see the final source code in once place.  So, here it is in all of it&#8217;s (very simple) glory.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*
Plugin Name: Word Filter
Plugin URI: http://brandontreb.com/
Description: This plugin filters out certain words in a post.  Could be used as a swear word filter or just a global find and replace.
Version: 1.0
Author: Brandon Trebitowski
Author URI: http://brandontreb.com
*/</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Array of replacements</span>
<span style="color: #000088;">$search_array</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'idiot'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'nice person'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'shutup'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'please be quite'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'hate'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'love'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Make sure our fn gets called before displaying the content</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'word_filter'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> word_filter<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$search_array</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">// Modify the content</span>
	<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$search_array</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$find</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$replace</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$find</span><span style="color: #339933;">,</span><span style="color: #000088;">$replace</span><span style="color: #339933;">,</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">// Return the content</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>*Note: I omitted the php wrapper tags because they were causing problems in the output. Make sure you add them back in.</p>
<p>There you have it! Your first WordPress plugin.  In a later tutorial I will show you how to create an admin panel that will allow users to configure all of the search and replace words.</p>
<p>If you have any comments or questions, feel free to leave them in the comments section of this post.</p>
<p>You may also download the source for this example <a href='http://brandontreb.com/wp-content/uploads/2010/03/word_filter.zip'>here</a>.</p>
<p>Happy WPCoding!</p>
]]></content:encoded>
			<wfw:commentRss>http://brandontreb.com/wordpress-plugin-development-your-first-plugin/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Increase Your Twitter Following Using Your WordPress Blog</title>
		<link>http://brandontreb.com/increase-your-twitter-following-using-your-wordpress-blog/</link>
		<comments>http://brandontreb.com/increase-your-twitter-following-using-your-wordpress-blog/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 15:00:57 +0000</pubDate>
		<dc:creator>brandontreb</dc:creator>
				<category><![CDATA[Nerdyness]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[followers]]></category>
		<category><![CDATA[popular]]></category>
		<category><![CDATA[twitlebrity]]></category>
		<category><![CDATA[twitpop]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://brandontreb.com/?p=655</guid>
		<description><![CDATA[<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 22px; margin-left: 0px; clear: left; font-size: 13px; padding: 0px;"><a href="http://brandontreb.com/wp-content/uploads/2009/11/twitter64.png"><img class="size-full wp-image-656 alignnone" title="twitter_bird" src="http://brandontreb.com/wp-content/uploads/2009/11/twitter64.png" alt="twitter_bird" width="562" height="352" /></a></p>
TwitPop is a Wordpress plugin I wrote with one goal...To make you more popular on Twitter. There are sites that spring up from time to time claiming to get you more followers on Twitter if you follow X amount of people on the follow train. Well, now you can create your own Twitter train on your wordpress blog and really get more followers.]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 22px; margin-left: 0px; clear: left; font-size: 13px; padding: 0px;"><a href="http://brandontreb.com/wp-content/uploads/2009/11/twitter64.png"><img class="size-full wp-image-656 alignnone" title="twitter_bird" src="http://brandontreb.com/wp-content/uploads/2009/11/twitter64.png" alt="twitter_bird" width="562" height="352" /></a></p>
<p><a href="http://downloads.wordpress.org/plugin/twitpop.zip">Download TwitPop Now</a></p>
<p>TwitPop is a WordPress plugin I wrote with one goal&#8230;To make you more popular on Twitter. There are sites that spring up from time to time claiming to get you more followers on Twitter if you follow X amount of people on the follow train. Well, now you can create your own Twitter train on your wordpress blog and really get more followers.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 22px; margin-left: 0px; clear: left; font-size: 13px; padding: 0px;">The best part is, you add your username in the admin panel and EVERYONE FOLLOWS YOU! Think of the possibilities&#8230; You could be a Twitlebrity.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 22px; margin-left: 0px; clear: left; font-size: 13px; padding: 0px;">To add to the excitement, everyone that uses your TwitPop plugin will Tweet a link back to your blog. This promotes your blog as well as your Twitter account. Check out how TwitPop works below.</p>
<p><strong>Instructions</strong></p>
<p>Log in to your Twitter account below.  You will automatically follow the people that have visited this page before you (no more than 20).</p>
<p>Then, your Twitter username will be added to the list and you will be followed by the next 20 people to use this plugin.</p>
<p><a name="twitpop">&nbsp;</a>
		<div id="twitpop">
		<fieldset class="message success" style="display:none;">
			<img src="http://brandontreb.com/wp-content/plugins/twitpop/images/success-icon.png" width="50" height="50">
			<p></p>
		</fieldset>
		<fieldset class="message error" style="display:none;">
			<img src="http://brandontreb.com/wp-content/plugins/twitpop/images/warning-icon.png" width="50" height="50">
			<p></p>
		</fieldset>
		<fieldset class="login">
			<legend>Twitter Login Information</legend>
			<form name="twitpop_form" id="twitpop_form" method="POST" action="#twitpop">
			<div>
				<label for="username">Twitter Username:</label> <input type="text" id="username" name="twitpop_username">
			</div>
			<div>
				<label for="password">Twttier Password:</label> <input type="password" id="password" name="twitpop_password">
			</div>
			<div><label for="password">&nbsp;</label><a href="#" onClick="document.twitpop_form.submit();return false;" class="btn blue"><i></i><span><span></span><i></i>Submit</span></a></div><br />
			</form>
			<p id="powered">Powered by <a href="http://brandontreb.com/twitpop">TwitPop</a></p>
		</fieldset>
	</div>
	</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 22px; margin-left: 0px; clear: left; font-size: 13px; padding: 0px;"><a href="http://downloads.wordpress.org/plugin/twitpop.zip">Download TwitPop Now</a></p>
]]></content:encoded>
			<wfw:commentRss>http://brandontreb.com/increase-your-twitter-following-using-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
