<?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>BloggingPro &#187; WordPress Hacks</title>
	<atom:link href="http://www.bloggingpro.com/archives/category/wordpress-hacks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bloggingpro.com</link>
	<description>News, plugins and themes for blogging applications</description>
	<lastBuildDate>Wed, 08 Feb 2012 16:37:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Creating a Shared Content Box Across All of Your WordPress Blogs</title>
		<link>http://www.bloggingpro.com/archives/2012/02/04/creating-a-shared-content-box-across-all-of-your-blogs/</link>
		<comments>http://www.bloggingpro.com/archives/2012/02/04/creating-a-shared-content-box-across-all-of-your-blogs/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 05:40:36 +0000</pubDate>
		<dc:creator>James Junior</dc:creator>
				<category><![CDATA[Blogging: How To]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shared content box]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/?p=24567</guid>
		<description><![CDATA[More than five years ago, I was bit by the Autoblog bug. I don’t build them anymore, but I still build WordPress blogs in large numbers. One of my pet peeves when I was working with 100+ different blogs was that if I wanted to interlink them, or have the exact same links on the [...]]]></description>
			<content:encoded><![CDATA[<p>More than five years ago, I was bit by the Autoblog bug. I don’t build them anymore, but I still build WordPress blogs in large numbers. One of my pet peeves when I was working with 100+ different blogs was that if I wanted to interlink them, or have the exact same links on the sidebar of each blog, I would have to add these links manually to each and every blog every time I built a new blog. For example, if I have 98 blogs, and I want every one of them to have a link to blog #99 that I just created, I would have to add that link to all 98 blogs manually. That is very time-consuming, so I knew there had to be a better way.</p>
<p>Of course, <a href="http://www.w3schools.com/php/">PHP</a> can do just about anything if you know how to tell it to. I thought it would be awesome if I could have a shared links box on the sidebar of each WordPress blog, and have a form online that I could enter in the name and URL to each new blog as I built them, and then have PHP add that link to all 98 <a href="http://www.bloggingpro.com/archives/2010/06/08/problogging-on-blogger-8-tips-for-blogspot-lovers/">blogs</a> instantly. Thankfully, I was able to set this up exactly how I needed it. This is what I am going to show you today, and you can use it however you see fit. One thing I want to remind you of is that even though I am using the shared content box for links, it technically can be used for anything, your imagination is the limit. Let’s get started.</p>
<p><span id="more-24567"></span></p>
<h2>Requirements</h2>
<p>WordPress Blog(s)<br />
Hosting with PHP and MySQL Database (this is a common setup, so your host should have it)<br />
PHPMyAdmin Access</p>
<h2>Step 1</h2>
<p>Download the <a href="http://wordpress.org/extend/plugins/samsarin-php-widget/">Samsarin PHP Widget</a> to your WP blog;  install and activate it. This plugin lets you create a widget that can execute any PHP code right in the widget. This is crucial for you because it allows you to connect to your PHP database and display the content right there on your blog.</p>
<h2>Step 2</h2>
<p>Open up your PHPMyAdmin dashboard, and create a new database called links_database. You do this by clicking on the &#8220;databases&#8221; tab from the PHPMyAdmin home page, then you can specify the name of the database you want to create. If you don’t have enough admin rights to create a database from PHPMyAdmin, then you have to create it from within your hosting panel (CPanel, etc.).</p>
<h2>Step 3</h2>
<p>Once you have the database created, you need to execute the following SQL code to create the table that will house the links. Do this by clicking on the SQL tab up top and pasting in and running the following SQL code:</p>
<p><code>CREATE TABLE IF NOT EXISTS `links` (<br />
`site_name` varchar(50) NOT NULL,<br />
`url` varchar(100) NOT NULL<br />
) ENGINE=MyISAM DEFAULT CHARSET=latin1;</code></p>
<p>That SQL code will create a table named links inside the links_database database. Notice that it has two columns/fields:  site_name is the anchor text, and url is the URL of the site that the anchor text will point to.</p>
<h2>Step 4</h2>
<p>Next we are going to create a PHP file named connect.php which will contain the login and password for the specific database that we want to hook up to in our other scripts. Go ahead and create connect.php with your text editor and insert the following code into it (be sure to change the username and password to your own):</p>
<p><code>&lt;?php<br />
# Type="MYSQL"<br />
# HTTP="true"<br />
$hostname_links = "localhost";<br />
$database_links = "links_database";<br />
$username_links = "DB_USERNAME";<br />
$password_links = "DB_PASSWORD";<br />
$conn = mysql_pconnect($hostname_links, $username_links, $password_links) or trigger_error(mysql_error(),E_USER_ERROR);<br />
?&gt;</code></p>
<h2>Step 5</h2>
<p>Now we create another simple PHP script called update.php, which will actually update the database every time we create and add a new link. Fill the update.php with the following code:</p>
<p><code>&lt;?php require_once('connect.php'); ?&gt;<br />
&lt;?php<br />
$site_name = $_POST['site_name'];<br />
$url = $_POST['url'];<br />
mysql_select_db("links_database", $jim);<br />
$query = "INSERT INTO links (site_name,url ) VALUES ('$_POST[site_name]','$_POST[url]')";<br />
if (!mysql_query($query,$conn))<br />
{<br />
die('Error: ' . mysql_error());<br />
}<br />
echo "1 record added";<br />
?&gt;</code></p>
<h2>Step 6</h2>
<p>Next we are going to create another PHP script called enterblog.php which will serve as the online web form that you will go to every time you want to add a new link to the list. Create enterblog.php with the following code in it:</p>
<p><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br />
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;<br />
&lt;title&gt;Enter New Blog&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div align="center"&gt;&lt;form id="form1" name="form1" method="post" action="update.php"&gt;<br />
&lt;table width="500" border="0" cellspacing="0" cellpadding="4"&gt;<br />
&lt;tr&gt;<br />
&lt;td width="190"&gt;Enter name of new site:&lt;/td&gt;<br />
&lt;td width="294"&gt;<br />
&lt;input name="site_name" type="text" id="site_name" size="50" maxlength="50" /&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Enter the url of the site:&lt;/td&gt;<br />
&lt;td&gt;&lt;input name="url" type="text" id="url" value="http://www." size="50" maxlength="100" /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
&lt;td align="center"&gt;&lt;input type="submit" name="submit" id="submit" value="Add Site to Database" /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></p>
<h2>Step 7</h2>
<p>We now will create another PHP script called displayurls.php which will be the script we call from the widget in WordPress. This script simply pulls all of the rows from the links table in the links_database. Put the following code inside displayurls.php:</p>
<p><code>&lt;?php<br />
// Connects to your Database<br />
mysql_connect("localhost", "DB_USERNAME", "DB_PASSWORD") or die(mysql_error());<br />
mysql_select_db("links_database") or die(mysql_error());<br />
$data = mysql_query("SELECT * FROM links") or die(mysql_error());<br />
$rt=mysql_query($data);<br />
while($nt=mysql_fetch_array($data)){<br />
Print "&lt;table border=0 cellpadding=3&gt;";<br />
echo "&lt;tr&gt;&lt;td&gt;&lt;a href=\"";<br />
echo $nt['url'];<br />
echo "\"&gt;";<br />
echo $nt['site_name'];<br />
echo "&lt;/a&gt;";<br />
echo "&lt;/td&gt;";<br />
echo "&lt;/tr&gt;";<br />
Print "&lt;/table&gt;";<br />
}<br />
?&gt;</code></p>
<h2>Step 8</h2>
<p>Okay almost done! Upload all of the PHP files we created here to the root directory of your site. Then change the file permissions on them to 755. Once you are done with that, it is time to bring up the web form and enter in a few links to the database. To do that, just type in the URL to your enterblog.php script, which should be something like http://www.yourblog.com/enterblog.php and you will see a two field web form. Enter in a few sites and URL&#8217;s, and hit enter after you type each one. It should tell you that 1 row was added if it went through successfully. Once that is done we can move on to the final step.</p>
<h2>Step 9</h2>
<p>Go into your WordPress admin and click on the Widgets option under the Appearance menu. In the widget selections you should see a widget titled something like &#8220;Samsarin PHP 1&#8243;, make sure you drag that widget somewhere onto your visible sidebar. When the widget pops up, enter in the title of the widget which might be something like &#8220;Links&#8221; and then in the body field type in the following PHP code:</p>
<p><code>&lt;?php include("displayurls.php"); ?&gt;</code></p>
<p>Then hit Save. If you should run into an issue where you cannot see the links, try typing in your Absolute Server Path inside the above PHP include code (so instead of &#8220;displayurls.php&#8221; you might put something like &#8220;/var/www/displayurls.php&#8221; but the exact path is different for everyone&#8217;s server). You can get the absolute server path from your hosting company. When you bring up your blog, you should see the links box on any site you put that widget on. If you have this widget installed on every blog on your server, you can add a link to them all instantly just by entering the link info once into the web form and hitting enter! Pretty cool huh?!</p>
<p>Just a side note, I am not a PHP programmer. I know enough to modify some things and write simple scripts, but if you are a PHP guru and you see something that can be improved in these scripts, or see something wrong, feel free to voice your opinion in the comments and I will listen to all of your ideas. Good Luck!</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/promote_your_blog.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2012/02/04/creating-a-shared-content-box-across-all-of-your-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awesome WordPress Customizations That Don&#8217;t Require Plugins</title>
		<link>http://www.bloggingpro.com/archives/2010/05/07/awesome-wordpress-customizations-that-dont-require-plugins/</link>
		<comments>http://www.bloggingpro.com/archives/2010/05/07/awesome-wordpress-customizations-that-dont-require-plugins/#comments</comments>
		<pubDate>Fri, 07 May 2010 16:35:18 +0000</pubDate>
		<dc:creator>Robyn-Dale Samuda</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[WordPress Design]]></category>
		<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/?p=17586</guid>
		<description><![CDATA[WordPress, being the most popular blogging / content management platform in existence, has a huge community of developers and designers worldwide who are constantly brainstorming new and improved ways of making this legendary system more extensible through the use of plugins. Thanks to these plugins (9,486 Plugins according to WordPress.org), the average user can add [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bloggingpro.com/archives/2010/05/07/awesome-wordpress-customizations-that-dont-require-plugins/"><img style=' float: left; padding: 4px; margin: 0 7px 2px 0;'  class="alignleft size-full  wp-image-17603" title="wordpress-custom" src="http://www.bloggingpro.com/wp-content/uploads/2010/05/wordpress-custom.jpg" alt="" width="189" height="164" /></a>WordPress, being the most popular blogging / content management platform in existence, has a huge community of developers and designers worldwide who are constantly brainstorming new and improved ways of making this legendary system more extensible through the use of plugins. Thanks to these plugins (9,486 Plugins according to <a href="http://wordpress.org/extend/plugins/">WordPress.org</a>), the average user can add style and functionality to their blog or website<br />
as easy as the click of a couple of buttons. No coding required.</p>
<p>However, adding tons of plugins can significantly slow the loading time and overall performance of your blog. Therefore, its really important to use those that are absolutely necessary and delete the ones you&#8217;re not using. So, for those of you who may want to go the extra mile to guarantee 100%  loading efficiency and dabble in a little code, here are some unique  customizations that can replace some plugins that you may have  installed. <span id="more-17586"></span></p>
<h3>1. Add Author Bio Box Below Posts</h3>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-17601" title="author-bio" src="http://www.bloggingpro.com/wp-content/uploads/2010/05/author-bio.jpg" alt="" width="450" height="129" /></p>
<p>Depending on your style and preference, having an author bio section below your posts can provide useful information about yourself and any other authors who may write for your blog. The code below will show you how to add this box for each of your posts.</p>
<p>Inside your WordPress dashboard, select <em>Appearance</em>, then <em>Editor</em> and select your <strong>single.php</strong> file to edit. Paste the following code below <em>the_content</em> code section. Ensure that the code is placed after the &#8220;?&gt;&#8221; php tag.</p>
<pre class="brush: plain; title: ; notranslate">&lt;div class=&quot;postauthor&quot;&gt;
		&lt;?php echo get_avatar( get_the_author_id() , 120 ); ?&gt;
		&lt;h4&gt;Article by &lt;a href=&quot;&lt;?php the_author_url(); ?&gt;&quot;&gt;
		&lt;?php the_author_firstname(); ?&gt; &lt;?php the_author_lastname(); ?&gt;&lt;/a&gt;&lt;/h4&gt;
  &lt;p&gt;&lt;?php the_author_firstname(); ?&gt; has written &lt;strong&gt;&lt;?php the_author_posts(); ?&gt;&lt;/strong&gt; awesome articles for us. &lt;br/&gt;&lt;br/&gt;&lt;?php the_author_description(); ?&gt;&lt;/p&gt;
&lt;/div&gt;</pre>
<p>You will then need to edit your <strong>style.css</strong> file by adding the code below to give your author bio box some style.</p>
<pre class="brush: plain; title: ; notranslate">/* Author's Bio Box */
.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }</pre>
<p>That&#8217;s it. There really is no limit to how you can style your bio box. So have some fun.</p>
<h3>2. Highlight Author&#8217;s Comments</h3>
<p>You may want to differentiate your comments from others who comment on your blog. This is especially useful if you maintain a blog where you give advice and follow-up through replying to comments. This way your replys can be easily found. To do this copy the code below to your <strong>Style.css</strong> file. (Simply change the HEX color code to a color of your choice.)</p>
<pre class="brush: plain; title: ; notranslate">.bypostauthor {
background-color: #7BB7E4 !important;
}</pre>
<h3>3. Add Tweet Meme Button Without a Plugin<img style=' float: left; padding: 4px; margin: 0 7px 2px 0;'  class="alignleft size-full wp-image-17599" title="tweetmeme" src="http://www.bloggingpro.com/wp-content/uploads/2010/05/tweetmeme1.jpg" alt="" width="80" height="90" /></h3>
<p>Within your <strong>Single.php</strong> file enter the code below to add the twitter retweet button to your posts.</p>
<pre class="brush: plain; title: ; notranslate">&lt;script type=&quot;text/javascript&quot;&gt;
tweetmeme_source = 'samudary';
tweetmeme_style = 'compact';
tweetmeme_service = 'bit.ly';
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://tweetmeme.com/i/scripts/button.js&quot;&gt;
&lt;/script&gt;</pre>
<h3>4. Use a Custom Page for your Home Page</h3>
<p>We may not always want our WordPress sites to be all about blogging so the ability to create custom pages for your blog will give you the flexibility of adding any type of content in whichever format you choose. This is very useful if you would like to create flashy introductory or sales pages before visitors get lost in your blog.</p>
<p>i) First you will need to create a duplicate of your <strong>Page.php</strong> file within your theme&#8217;s directory and give it a name of your choice.</p>
<p>ii) Add the code below to the top of your new page, replacing &#8220;New Page Template&#8221; with a name of your choice.</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php /* Template Name: New Page Template */ ?&gt;</pre>
<p>iii) Create a new page and select the new page you created in the template selection drop down menu as shown below in figure 1.</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-17595" title="tutorial" src="http://www.bloggingpro.com/wp-content/uploads/2010/05/tutorial.jpg" alt="" width="587" height="321" /></p>
<p>iv) Once you have published your new page go to <em>Settings</em> then <em>Reading</em> in your dashboard and select your front page display as your new homepage in the drop down menu as shown in figure 2 above.</p>
<p>There you go! There are many customizations that can be done without the use of additional plugins that require more system resources. It&#8217;s really worth it to learn the basics in PHP coding as well as a little CSS which will allow you to have full control over your WordPress theme&#8217;s look and functionality</p>
<p><strong>How many plugins are you currently using for your WordPress site? Have any useful tips that you would like to share? Please let us know.</strong></p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-social-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2010/05/07/awesome-wordpress-customizations-that-dont-require-plugins/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>10 WordPress Hacks</title>
		<link>http://www.bloggingpro.com/archives/2009/06/09/10-wordpress-hacks/</link>
		<comments>http://www.bloggingpro.com/archives/2009/06/09/10-wordpress-hacks/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 15:51:56 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/?p=2956</guid>
		<description><![CDATA[In my recent surge of interest in WordPress plugins I&#8217;ve stumbled on a lot of interesting things. Today instead of plugins, it&#8217;s a list of 10 WordPress hacks, from themeflash.com, to add some pretty cool features without needing a plugin. They&#8217;re a little trickier than plugins to implement but can be well worth the final [...]]]></description>
			<content:encoded><![CDATA[<p>In my recent surge of interest in WordPress plugins I&#8217;ve stumbled on a lot of interesting things. Today instead of plugins, it&#8217;s a list of <a href="http://www.themeflash.com/wordpress/10-new-wordpress-hacks">10 WordPress hacks</a>, from themeflash.com, to add some pretty cool features without needing a plugin.</p>
<p>They&#8217;re a little trickier than plugins to implement but can be well worth the final effect.</p>
<p>Hacks in the list include:</p>
<blockquote><p>
Create TinyURLs On The Fly<br />
List Upcoming Posts<br />
Create A Maintenance Page For Your WordPress Blog<br />
Display Related Posts Without A Plug-In<br />
Resize Images On The Fly<br />
And 5 more&#8230;
</p></blockquote>
<p>They include detailed explanations of how to add the hacks that&#8217;s easy enough for anyone to follow, and none of them take more than a minute or so to setup (most will likely take just a few seconds). </p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-design-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2009/06/09/10-wordpress-hacks/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress Custom Field Tricks and Tips</title>
		<link>http://www.bloggingpro.com/archives/2009/05/13/wordpress-custom-field-tricks-and-tips/</link>
		<comments>http://www.bloggingpro.com/archives/2009/05/13/wordpress-custom-field-tricks-and-tips/#comments</comments>
		<pubDate>Wed, 13 May 2009 16:15:49 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/?p=2857</guid>
		<description><![CDATA[Smashing Magazine has put up a list of different things that you can do to extend your WordPress blog, and how it functions through custom fields. I&#8217;ve heard that this is going to get easier to use in future versions of WordPress, but for now, this should inspire some great additions to your blog. In [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.smashingmagazine.com/2009/05/13/10-custom-fields-hacks-for-wordpress/">Smashing Magazine</a> has put up a list of different things that you can do to extend your WordPress blog, and how it functions through custom fields. I&#8217;ve heard that this is going to get easier to use in future versions of WordPress, but for now, this should inspire some great additions to your blog.</p>
<blockquote><p>In this article, weâ€™ve compiled a list of 10 useful things that you can do with custom fields in WordPress. Among them are setting expiration time for posts, defining how blog posts are displayed on the front page, displaying your mood or music, embedding custom CSS styles, disabling search engine indexing for individual posts, inserting a â€œDigg thisâ€ button only when you need it and, of course, displaying thumbnails next to your posts</p></blockquote>
<p>I can&#8217;t really think of anything that&#8217;d require expiring blog posts, but the others are very helpful. Check out the whole article on <a href="http://www.smashingmagazine.com/2009/05/13/10-custom-fields-hacks-for-wordpress/">Smashing Magazine</a>, and let me know what you think was most helpful.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-social-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2009/05/13/wordpress-custom-field-tricks-and-tips/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Elite: 10 Awesome .htaccess Edits</title>
		<link>http://www.bloggingpro.com/archives/2009/03/20/wordpress-elite-10-awesome-htaccess-edits/</link>
		<comments>http://www.bloggingpro.com/archives/2009/03/20/wordpress-elite-10-awesome-htaccess-edits/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 14:46:30 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/?p=2762</guid>
		<description><![CDATA[There is one file that is barely understood by most WordPress users, and that is .htaccess. Most of us understand that it is what controls the pretty permalinks that most blogs take advantage of, but there are other amazing things that .htaccess can do, and if you dig deep enough, you can change how your [...]]]></description>
			<content:encoded><![CDATA[<p>There is one file that is barely understood by most WordPress users, and that is .htaccess. Most of us understand that it is what controls the pretty permalinks that most blogs take advantage of, but there are other amazing things that .htaccess can do, and if you dig deep enough, you can change how your WordPress blog behaves.</p>
<p><a href="http://www.catswhocode.com/blog/10-awesome-htaccess-hacks-for-wordpress">Cats Who Code</a> has a great list of ten .htaccess hacks that will do interesting things. From redirecting your RSS feed to Feedburner, to banning spammers from your blog, .htaccess can be a powerful ally in making your blog the envy of the blogosphere. </p>
<p>Take some time and look at these .htaccess edits, and don&#8217;t stop there, as many people have been writing amazing edits for a long time now for all sorts of sites that could easily be applied to your WordPress blog.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-social-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2009/03/20/wordpress-elite-10-awesome-htaccess-edits/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Non-Traditional Uses of WordPress</title>
		<link>http://www.bloggingpro.com/archives/2009/03/03/non-traditional-uses-of-wordpress/</link>
		<comments>http://www.bloggingpro.com/archives/2009/03/03/non-traditional-uses-of-wordpress/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 17:48:48 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/?p=2732</guid>
		<description><![CDATA[I love to see WordPress extended, and manipulated in weird ways. My favourite post thus far has been Raj Dash&#8217;s 48 Unique Ways To Use WordPress, but DesignM.ag has released their own list of non-traditional uses for WordPress. They cover some of the things we&#8217;ve seen before like the contact manager, but also show some [...]]]></description>
			<content:encoded><![CDATA[<p>I love to see WordPress extended, and manipulated in weird ways. My favourite post thus far has been Raj Dash&#8217;s <a href="http://performancing.com/blogging-tools/48-unique-ways-use-wordpress">48 Unique Ways To Use WordPress</a>, but <a href="http://designm.ag/design/11-non-traditional-uses-of-wordpress/">DesignM.ag</a> has released their own list of non-traditional uses for WordPress.</p>
<p>They cover some of the things we&#8217;ve seen before like the contact manager, but also show some cool things like using WordPress as a Membership directory. </p>
<p>If you are interested in extending WordPress in weird and wonderful ways, these two posts will probably give you some ideas of how far WordPress can be pushed, mostly through the use of plugins and themes.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-design-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2009/03/03/non-traditional-uses-of-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mastering WordPress Shortcodes</title>
		<link>http://www.bloggingpro.com/archives/2009/02/03/mastering-wordpress-shortcodes/</link>
		<comments>http://www.bloggingpro.com/archives/2009/02/03/mastering-wordpress-shortcodes/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 00:45:44 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/?p=2677</guid>
		<description><![CDATA[Shortcodes are a nice way of doing complex things within a post, without having to push PHP code through ExecPHP or one of those other plugins. Many plugins already make use of short codes allowing you to easily insert information into your posts. Smashing Magazine has done a great job of explaining WordPress Shortcodes, how [...]]]></description>
			<content:encoded><![CDATA[<p>Shortcodes are a nice way of doing complex things within a post, without having to push PHP code through ExecPHP or one of those other plugins. Many plugins already make use of short codes allowing you to easily insert information into your posts.</p>
<p><a href="http://www.smashingmagazine.com/2009/02/02/mastering-wordpress-shortcodes/">Smashing Magazine</a> has done a great job of explaining WordPress Shortcodes, how you can take advantage of them, and even write your own.</p>
<blockquote><p>Introduced in WordPress 2.5, shortcodes are powerful but still yet quite unknown WordPress functions. Imagine you could just type â€œadsenseâ€ to display an AdSense ad or â€œpost_countâ€ to instantly find out the number of posts on your blog.</p>
<p>WordPress shortcodes can do this and more and will definitely make your blogging life easier. In this article, weâ€™ll show you how to create and use shortcodes, as well as provide killer ready-to-use WordPress shortcodes that will enhance your blogging experience.</p></blockquote>
<p>Of course you can go too overboard with these sorts of things, so I recommend limiting your shortcodes to less than five items, but it can be a great way to speed up what could be otherwise monotonous work when blogging.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-design-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2009/02/03/mastering-wordpress-shortcodes/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Hold-off on Tyner: If you&#8217;re using Podpress</title>
		<link>http://www.bloggingpro.com/archives/2008/07/21/hold-off-on-tyner-if-youre-using-podpress/</link>
		<comments>http://www.bloggingpro.com/archives/2008/07/21/hold-off-on-tyner-if-youre-using-podpress/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 14:16:52 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/?p=2453</guid>
		<description><![CDATA[Updating your WordPress version to 2.6 may break your podcast. If you&#8217;re using Podpress (the popular free podcasting add-on for WordPress) PLEASE hold-off on upgrading to WordPress 2.6 (Tyner).Â  Read this article first, it may save your Podcast from the dreaded &#8220;off-air&#8221; state. Today, I received a GoogleAlert saying that Tyner and Podpress isn&#8217;t fully [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Updating your WordPress version to 2.6 may break your podcast. </strong></p>
<p>If you&#8217;re using <strong><a href="http://www.podpress.org/">Podpress</a></strong> (the popular free podcasting add-on for WordPress) PLEASE hold-off on upgrading to WordPress 2.6 (Tyner).Â  Read this article first, it may save your Podcast from the dreaded &#8220;off-air&#8221; state.</p>
<p>Today, I received a GoogleAlert saying that Tyner and Podpress isn&#8217;t fully compatible.Â  Once you successfully install WordPress 2.6, ALL your Podpress based podcasts will not work.Â </p>
<p>Here&#8217;s a typical message from the PodPress Forum:</p>
<p style="padding-left: 30px;"><em>I installed WordPress 2.6 (the full version, not the Release Candidate) today but am having problems as soon as I activate Podpress. When I try to edit an existing post from the front page or from inside the Admin Panel, I get the error message â€œInternet Explorer canâ€™t open the page [address of page] Operation cancelled.â€ but I see it only with IE. With FF it works like a charm. I thought it was out since longer already..thatâ€™s what you get for upgrading without informing yourself in advance.</em></p>
<p style="padding-left: 30px;"><em>Already last time I swore that I will never install a WordPress or Podpress update in the 1st month they are released..always have problems with upgrades.</em></p>
<p>and a similar thread from the WordPress Forum:</p>
<p style="padding-left: 30px;"><em>I&#8217;ve just uploaded my latest podcast and the pod press will not display it nor attach it to the post. Everything I uploaded yesterday is there and playing but after the update it&#8217;s not working.</em></p>
<p>At this time there isn&#8217;t an available patchÂ from Podpress, but here&#8217;s a nifty tip from a user who may have stumbled upon a solution (WARNING:Â  PLEASE note that this solution<strong> was not tested</strong> by anyone from bloggingpro.com,Â observe caution and care, we will not be held liable for any damage to your data, your person,Â or business.)</p>
<p>FROM JERD (a forum user/member of the <strong><a href="http://wordpress.org/support/topic/189646">WordPress Forum</a></strong>)</p>
<p style="padding-left: 30px;"><em>After spending hours digging through the code and looking at the database, I discovered that this is being caused by the new revisions in 2.6. To disable them, just add:</em></p>
<p style="padding-left: 30px;"><em>define (&#8216;WP_POST_REVISIONS&#8217;, 0);</em></p>
<p style="padding-left: 30px;"><em>to your wp-config.php and the problem disappears.</em></p>
<p>Podpress patch will be released in 10 days, according to <strong><a href="http://www.mightyseek.com/forum/showpost.php?p=5029&amp;postcount=25">this page</a></strong>Â (Dan KuykendallÂ of MightySeek.com).</p>
<p>Â </p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/promote_your_blog.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2008/07/21/hold-off-on-tyner-if-youre-using-podpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mastering WordPress Theme Hacks and Techniques</title>
		<link>http://www.bloggingpro.com/archives/2008/03/20/mastering-wordpress-theme-hacks-and-techniques/</link>
		<comments>http://www.bloggingpro.com/archives/2008/03/20/mastering-wordpress-theme-hacks-and-techniques/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 16:42:12 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2008/03/20/mastering-wordpress-theme-hacks-and-techniques/</guid>
		<description><![CDATA[Over on Noupe there is a great post that goes over some of the millions of ways you can effect major changes on your WordPress theme. Some are difficult, others are very easy, and almost all of them are powerful to bloggers looking to add customizations to their blogs. It includes links to dozens of [...]]]></description>
			<content:encoded><![CDATA[<p>Over on <a href="http://www.noupe.com/wordpress/mastering-your-wordpress-theme-hacks-and-techniques.html">Noupe</a> there is a great post that goes over some of the millions of ways you can effect major changes on your WordPress theme. Some are difficult, others are very easy, and almost all of them are powerful to bloggers looking to add customizations to their blogs.</p>
<p>It includes links to dozens of tutorials from all the great sites on the web that cover WordPress, and can help you answer some of those questions you&#8217;ve been interested in finding out more about. Covering things like the loop, conditional tags, post excerpts, and dozens of other things, the guide is a great starting point to those looking to dive deep into theme customization in WordPress. </p>
<blockquote><p>
This is the first article in the four-part series, &#8220;Powerful guide to master Your WordPress&#8221;. Throughout this article, weâ€™ll be focus on many WordPress Theme hacks, ideas, tips and useful tutorials you need to have ready in hand when developing WordPress websites.</p></blockquote>
<p>Check it out on <a href="http://www.noupe.com/wordpress/mastering-your-wordpress-theme-hacks-and-techniques.html">Noupe</a>.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-social-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2008/03/20/mastering-wordpress-theme-hacks-and-techniques/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 Custom Admin Colors</title>
		<link>http://www.bloggingpro.com/archives/2008/03/18/wordpress-25-custom-admin-colors/</link>
		<comments>http://www.bloggingpro.com/archives/2008/03/18/wordpress-25-custom-admin-colors/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 22:06:51 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2008/03/18/wordpress-25-custom-admin-colors/</guid>
		<description><![CDATA[Ozh has put up a tutorial on how everyone can change the colour schemes of the WordPress 2.5 administration panel. It seems to be relatively simple, if you understand how to make a plugin. WordPress 2.5 introduces a neat option: per user Admin Color Scheme. This means that each user can select a stylesheet they [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://planetozh.com/blog/2008/03/per-user-custom-stylesheet-in-wordpress-25/">Ozh</a> has put up a tutorial on how everyone can change the colour schemes of the WordPress 2.5 administration panel. It seems to be relatively simple, if you understand how to make a plugin.</p>
<blockquote><p>WordPress 2.5 introduces a neat option: per user Admin Color Scheme. This means that each user can select a stylesheet they like best for the whole admin area. Now onto the fun stuff: adding a per-user selectable custom stylesheet for your blog.</p>
<p>The new function behind this feature is wp_admin_css_color(),</p></blockquote>
<p>I have to admit, I wish a build-a-colour-scheme tool was built right into WordPress 2.5. Here is hoping that someone comes up with a good plugin solution for it, but until then, this is a great tutorial on how to change the colours to your own preferences.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-social-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2008/03/18/wordpress-25-custom-admin-colors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 Administration Theme: Fluency</title>
		<link>http://www.bloggingpro.com/archives/2008/03/12/wordpress-25-administration-theme-fluency/</link>
		<comments>http://www.bloggingpro.com/archives/2008/03/12/wordpress-25-administration-theme-fluency/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 19:05:14 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2008/03/12/wordpress-25-administration-theme-fluency/</guid>
		<description><![CDATA[WordPress 2.5 isn&#8217;t even out yet, and already we have a theme to replace the default WordPress administration panel theme that has taken a fair bit of flack. The theme, Fluency, replaces many of the graphics and navigational item placements in the WordPress admin. It strips the colours back to a black, gray, and white [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.5 isn&#8217;t even out yet, and already we have a theme to replace the default WordPress administration panel theme that has taken a fair bit of flack.</p>
<p>The theme, <a href="http://www.deanjrobinson.com/projects/fluency-admin/">Fluency</a>, replaces many of the graphics and navigational item placements in the WordPress admin. It strips the colours back to a black, gray, and white mix, moving the main navigation over to the left hand side. </p>
<blockquote><p>Despite the huge overhaul that the WordPress admin interface has received its still not quite what I would really like. I had grown quite attached to the Tiger Admin theme by Steve Smith and when I found that it didnâ€™t work with WP2.5 I was a little disappointed. But this gave me the opportunity to do something different, my own admin theme. Fluency is the result.</p></blockquote>
<p><center><img src="http://www.bloggingpro.com/wp-content/uploads/2008/03/fluency.jpg" alt="Fluency WordPress 2.5 Admin Panel Theme" /></center></p>
<p>While this might make many people happy, I still believe that I will adjust to the upcoming WordPress administration panel, and am interested to see how long it will be before someone comes out with a &#8220;Retro&#8221; administration panel theme, reverting it back to looking closer to the WordPress 2.3 administration panel we have come to be familiar with.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/promote_your_blog.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2008/03/12/wordpress-25-administration-theme-fluency/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Adding TinyMCE Editor to the Prologue Theme</title>
		<link>http://www.bloggingpro.com/archives/2008/03/12/adding-tinymce-editor-to-the-prologue-theme/</link>
		<comments>http://www.bloggingpro.com/archives/2008/03/12/adding-tinymce-editor-to-the-prologue-theme/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 18:31:22 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2008/03/12/adding-tinymce-editor-to-the-prologue-theme/</guid>
		<description><![CDATA[Love the Prologue theme, but not the minimalist post box it includes? Raj Dash on Performancing has heard your cries and gone ahead and created a tutorial on adding the TinyMCE editor to the theme. Twitter-like microbloggging functionality. But out of the box, the theme has a very plain edit area (see image below), and [...]]]></description>
			<content:encoded><![CDATA[<p>Love the Prologue theme, but not the minimalist post box it includes? Raj Dash on <a href="http://performancing.com/wordpress-hacks-adding-tinymce-editor-prologue-theme">Performancing</a> has heard your cries and gone ahead and created a tutorial on adding the TinyMCE editor to the theme.</p>
<blockquote><p>Twitter-like microbloggging functionality. But out of the box, the theme has a very plain edit area (see image below), and adding links, images, etc., is tedious.</p>
<p>Fortunately, there&#8217;s a really easy fix to this problem: TinyMCE editor. TinyMCE is a Javascript-based freeware editor. If you have a recent version of WordPress, it&#8217;s the default &#8220;visual&#8221; editor that you get in the admin panel. Thanks to its easy integration features, we can use this as a replacement to the default HTML message editor in the Prologue theme. And you won&#8217;t believe how incredibly easy it is to hack it. I think it took me about 2 minutes, not including download and installation. I&#8217;m actually surprised that Automattic didn&#8217;t do it themselves.</p></blockquote>
<p>Definitely worth checking out if you want to add features and functions for users that aren&#8217;t familiar with HTML. </p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-social-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2008/03/12/adding-tinymce-editor-to-the-prologue-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>48 Unique Ways To Use WordPress</title>
		<link>http://www.bloggingpro.com/archives/2008/03/03/48-unique-ways-to-use-wordpress/</link>
		<comments>http://www.bloggingpro.com/archives/2008/03/03/48-unique-ways-to-use-wordpress/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 19:23:54 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2008/03/03/48-unique-ways-to-use-wordpress/</guid>
		<description><![CDATA[Over on Performancing there is a great post which discusses the many ways in which WordPress can be used as a starting platform for all sorts of different web based applications. This was also talked about at Northern Voice while I was there in a session called More than Cat Blogs. It seems that there [...]]]></description>
			<content:encoded><![CDATA[<p>Over on <a href="http://performancing.com/blogging-tools/48-unique-ways-use-wordpress">Performancing</a> there is a great post which discusses the many ways in which WordPress can be used as a starting platform for all sorts of different web based applications. This was also talked about at <a href="http://www.northernvoice.ca">Northern Voice</a> while I was there in a session called More than Cat Blogs.</p>
<p>It seems that there are many people looking to extend and manipulate WordPress in wild and wonderful ways.</p>
<blockquote><p><strong>Why Use WordPress?</strong></p>
<p>Not everyone is for the idea of WordPress as a CMS. Some bloggers point out a variety of technical issues (which I&#8217;m not getting into here). True, WP is not a high-end CMS, but it can get the job done, especially for low-volume use. The point is that with WP, you don&#8217;t always need to pay $50,000+ for a proprietary, difficult to learn CMS. And that&#8217;s for starters. Many of high-end CMSes require &#8220;seat&#8221; licenses. That is, a fee for each person that MIGHT use the software. Add maintenances/ upgrade fees, support licenses, training, etc., and most small businesses or online publishers are spending more than they have/ is necessary.</p>
<p>WordPress can do the job, and as has been discussed here and elsewhere many times, has a lot of community support, free themes and plugins, and is relatively easy to customize or to find someone who can for a fair price. Below are some ways that WP can be used.</p></blockquote>
<p>I&#8217;ve done many of the listed items, but I am always looking to extend it in new and interesting ways, in hopes of streamlining my workflow. I love the idea of changing WordPress into a contact manager, but will I be vigilant in adding people&#8217;s information to it? Definitely an article worth checking out on <a href="http://performancing.com/blogging-tools/48-unique-ways-use-wordpress">Performancing.com</a>.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-social-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2008/03/03/48-unique-ways-to-use-wordpress/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Adding Gravatars Without any Plugins</title>
		<link>http://www.bloggingpro.com/archives/2008/03/03/adding-gravatars-without-any-plugins/</link>
		<comments>http://www.bloggingpro.com/archives/2008/03/03/adding-gravatars-without-any-plugins/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 18:49:02 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2008/03/03/adding-gravatars-without-any-plugins/</guid>
		<description><![CDATA[I am a little &#8220;anti-plugin&#8221;. I try to avoid adding plugins to my blog if I can avoid it. Mostly because I don&#8217;t always know what they are doing and you never know what people are doing to your blog once you click Activate, and so I really enjoyed a post I found thanks to [...]]]></description>
			<content:encoded><![CDATA[<p>I am a little &#8220;anti-plugin&#8221;. I try to avoid adding plugins to my blog if I can avoid it. Mostly because I don&#8217;t always know what they are doing and you never know what people are doing to your blog once you click Activate, and so I really enjoyed a post I found thanks to <a href="http://weblogtoolscollection.com/archives/2008/03/02/gravatars-without-a-plugin/">Weblog Tools Collection</a> that shows off how to add Gravatars to your blog without using any plugins.</p>
<p>The tutorial, by <a href="http://www.connorwilson.com/2008/03/02/how_to_setup_gravatars_for_your_blog_-_plugin_free/">Connor Wilson</a> requires a bit of theme editing knowhow, but isn&#8217;t all that difficult to do.</p>
<p>The basics are that you need to create a MD5 hash of the commenters e-mail address as the URL for the image that you want to pull. Very simple, and very impressive. I tip my hat to you Connor.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-design-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2008/03/03/adding-gravatars-without-any-plugins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Tricks and Tips: Custom WordPress Login</title>
		<link>http://www.bloggingpro.com/archives/2007/07/25/wordpress-tricks-and-tips-custom-wordpress-login/</link>
		<comments>http://www.bloggingpro.com/archives/2007/07/25/wordpress-tricks-and-tips-custom-wordpress-login/#comments</comments>
		<pubDate>Wed, 25 Jul 2007 19:18:31 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2007/07/25/wordpress-tricks-and-tips-custom-wordpress-login/</guid>
		<description><![CDATA[Ben of Binary Moon has taken the custom WordPress login a step further as one of his series of WordPress Tricks and Tips. He created a plugin as well as an image template for the custom WordPress login. The plugin itself sits in the plugins folder alongside the images &#8211; which you can change as [...]]]></description>
			<content:encoded><![CDATA[<p>Ben of Binary Moon has taken the <a href="http://www.binarymoon.co.uk/2007/07/wordpress-tips-and-tricks-custom-login-page/">custom WordPress login</a> a step further as one of his series of WordPress Tricks and Tips.</p>
<p>He created a plugin as well as an image template for the custom WordPress login. </p>
<blockquote><p>
The plugin itself sits in the plugins folder alongside the images &#8211; which you can change as required. The footer image has been changed to a gif with a transparent middle which means you can use any images you like for the main background and they will fit seamlessly.</p>
<p>Because this is a plugin and the images are kept separately from the admin folder upgrades a nice and easy. Just upgrade as normal. This is particularly handy for client sites where they may not be aware of what you have done to customise things.</p></blockquote>
<p>Check out this and other tricks and tips over on <a href="http://www.binarymoon.co.uk/2007/07/wordpress-tips-and-tricks-custom-login-page/">Binary Moon</a>.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/promote_your_blog.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2007/07/25/wordpress-tricks-and-tips-custom-wordpress-login/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Customize Your WordPress Login</title>
		<link>http://www.bloggingpro.com/archives/2007/07/17/customize-your-wordpress-login/</link>
		<comments>http://www.bloggingpro.com/archives/2007/07/17/customize-your-wordpress-login/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 14:58:36 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2007/07/17/customize-your-wordpress-login/</guid>
		<description><![CDATA[David Airey has a great little tutorial up on how to modify your WordPress login page, so that it fits more in line with the style of your site. Even better, it is basically just the modification of two image files. So check it out. He seems to be using this as a way to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.davidairey.com/customize-your-wordpress-login/">David Airey</a> has a great little tutorial up on how to modify your WordPress login page, so that it fits more in line with the style of your site. </p>
<p>Even better, it is basically just the modification of two image files. So check it out. He seems to be using this as a way to remind his customers of the work he has done for them, by repeating his brand every time they need to log in. A very wise move for those trying to really get their name out there when it comes to customizing WordPress.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/promote_your_blog.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2007/07/17/customize-your-wordpress-login/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Slideshow Pro with PHP, CSS and JS</title>
		<link>http://www.bloggingpro.com/archives/2006/10/19/slideshow-pro-with-php-css-and-js/</link>
		<comments>http://www.bloggingpro.com/archives/2006/10/19/slideshow-pro-with-php-css-and-js/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 15:51:11 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2006/10/19/slideshow-pro-with-php-css-and-js/</guid>
		<description><![CDATA[Before I say anything else, I wish that Chris J. Davis would make my life easier and roll this into a stand alone package for non-WordPress users to use and modify, as it would be perfect for a site I am working on, and I don&#8217;t want to try to make it work, I just [...]]]></description>
			<content:encoded><![CDATA[<p>Before I say anything else, I wish that Chris J. Davis would make my life easier and roll this into a stand alone package for non-WordPress users to use and modify, as it would be perfect for a site I am working on, and I don&#8217;t want to try to make it work, I just want it to work.</p>
<p><strong>What is it?</strong></p>
<p>Well, <a href="http://www.chrisjdavis.org/2006/10/08/slideshow-pro-with-php-css-and-js/#more-873">Chris</a> has gone and created a method of replacing flash when it comes to making a slideshow with transition effects. It is a beautiful example of what can be done with PHP, CSS and some JavaScript (I still hate JavaScript no matter how popular its becoming again).</p>
<blockquote><p>So at work the new design we just launched called for a rotating, hyperlinked slideshow, with cross-fading.</p>
<p>Normally it would be â€œTo the Flash Cave!â€, but I was feeling extra crotchety so I decided to basically recreate Slideshow Pro in PHP, CSS and some JS-foo.  Nothing to spectacular, but it is shiny.  Be warned, this is a very long tutorialâ€¦ use at your own risk.</p></blockquote>
<p>This is definetly something to try if you have some extra time. Chris has said he might not roll it up into a plugin, but maybe if you beg hard enough and throw money at him he will.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/promote_your_blog.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2006/10/19/slideshow-pro-with-php-css-and-js/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Comments System built with Yahoo! UI</title>
		<link>http://www.bloggingpro.com/archives/2006/10/10/wordpress-comments-system-built-with-yahoo-ui/</link>
		<comments>http://www.bloggingpro.com/archives/2006/10/10/wordpress-comments-system-built-with-yahoo-ui/#comments</comments>
		<pubDate>Tue, 10 Oct 2006 19:29:58 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2006/10/10/wordpress-comments-system-built-with-yahoo-ui/</guid>
		<description><![CDATA[Here is something completely different, Jack Slocum has gone ahead and used Yahoo UI and YAHOO.ext to modify how comments are handled in WordPress. While it is not all that practical for most people, it is still a very interesting modification. For quite some time I have wanted to upgrade my WordPress comments system. I [...]]]></description>
			<content:encoded><![CDATA[<p>Here is something completely different, <a href="http://www.jackslocum.com/yui/2006/10/09/my-wordpress-comments-system-built-with-yahoo-ui-and-yahooext/">Jack Slocum</a> has gone ahead and used Yahoo UI and YAHOO.ext to modify how comments are handled in WordPress. While it is not all that practical for most people, it is still a very interesting modification. </p>
<blockquote><p>For quite some time I have wanted to upgrade my WordPress comments system. I had some free time yesterday so I decided to go through the WordPress internals and figure out how some of it worked. Before I knew what had happened, it was 3:00am and I had a working prototype. It worked so well in my preliminary testing, I decided to deploy it to my blog and see what you guys thought.22</p>
<p>I think it turned out to be a perfect example of what can be done in a very small amount of time with Yahoo UI and YAHOO.ext. In a day&#8217;s worth of work, I have completely transformed the comments system on this site. Around half of that time was spent on the user interface, and the other half modifying WordPress to do the things it needed to do on the backend.</p></blockquote>
<p>Basically you can comment on a single paragraph allowing you to pinpoint the exact section you want to make a remark on. I would love to have the changed files, and modifications done up in a nice package for people to install, but no doubt after extensive testing we might just see that.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/promote_your_blog.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2006/10/10/wordpress-comments-system-built-with-yahoo-ui/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Hacks: WordPress-to-WordPress Import</title>
		<link>http://www.bloggingpro.com/archives/2006/07/11/wordpress-hacks-wordpress-to-wordpress-import/</link>
		<comments>http://www.bloggingpro.com/archives/2006/07/11/wordpress-hacks-wordpress-to-wordpress-import/#comments</comments>
		<pubDate>Tue, 11 Jul 2006 22:37:59 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2006/07/11/wordpress-hacks-wordpress-to-wordpress-import/</guid>
		<description><![CDATA[A feature that I have wanted for some time now is a way to merge some of my WordPress blogs into one super blog, as I have started a blog and stopped writing on a blog, and let it die. Its old entries could bolster my current blog a bit more, and make it a [...]]]></description>
			<content:encoded><![CDATA[<p>A feature that I have wanted for some time now is a way to merge some of my WordPress blogs into one super blog, as I have started a blog and stopped writing on a blog, and let it die. Its old entries could bolster my current blog a bit more, and make it a more interesting read, but as far as I knew there was no way to do it easily. </p>
<p>While this feature is said to be in the next major version of WordPress, some people just can&#8217;t wait that long, and Aaron Brazell is one of them. </p>
<blockquote><p>I know there are quite a lot of folks who have wanted to merge WordPress blogs or in one way or another import from one blog into another. The feature is coming in the next major build of WordPress and is already in place on WordPress.com blog. Trust me. But for now, I have wrapped that code into a plugin. Iâ€™ve already merged two blogs and there are other reasons I need this as well. It works. I have not had a lot of other extensive testing, but for me it works.</p></blockquote>
<p>Check it out at <a href="http://www.technosailor.com/wordpress-to-wordpress-import/">Technosailor.</a></p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-social-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2006/07/11/wordpress-hacks-wordpress-to-wordpress-import/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Akismet Worst Offenders Extension</title>
		<link>http://www.bloggingpro.com/archives/2006/06/23/akismet-worst-offenders-extension/</link>
		<comments>http://www.bloggingpro.com/archives/2006/06/23/akismet-worst-offenders-extension/#comments</comments>
		<pubDate>Fri, 23 Jun 2006 19:15:06 +0000</pubDate>
		<dc:creator>David Peralty</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2006/06/23/akismet-worst-offenders-extension/</guid>
		<description><![CDATA[Now even plugins are getting plugins, as Richard Boakes adds onto Akismet, a powerful and popular anti-comment spam plugin for WordPress and other software. The extension, allows for users to easily see and delete mass groupings of spam easily. It shows you the worst offenders, IP Addresses of computers sending you the most spam, and [...]]]></description>
			<content:encoded><![CDATA[<p>Now even plugins are getting plugins, as Richard Boakes adds onto Akismet, a powerful and popular anti-comment spam plugin for WordPress and other software.</p>
<p>The extension, allows for users to easily see and delete mass groupings of spam easily. It shows you the worst offenders, IP Addresses of computers sending you the most spam, and allows you to delete all their spam with one little click. </p>
<p><center><img src="http://www.bloggingpro.com/wp-content/uploads/2006/06/inuse.png" alt="Akismet Worst Offenders Extension" /></center></p>
<blockquote><p>So I wrote a small addition to Akismet 1.15 (pictured above) that tries to help. It pre-processes the spam comments and identifies the worst offenders in terms of the domain thatâ€™s being advertised, or (perhaps more usefully) the IP Address of the spamming computer.</p>
<p>Itâ€™s not uncommon for me to get several hundred spam comments each day, so certain machines and websites are hitting my site many times. What the plugin does is make those worst offenders really obvious, so they can be removed en masse, reducing the ham-hunting to a smaller and more managable task.</p></blockquote>
<p>Very interesting. He has also gone to the next level of blocking the computers that send him the most spam, and while it has been working well for him, I would be very careful in watching its effects when testing his htaccess extension to make sure it does not stop legitimate people from accessing your site.</p>
<p>Check out the <a href="http://boakes.org/akismet-worst-offenders">Worst Offenders Extension</a> and the <a href="http://boakes.org/akismet-htaccess-extension">htaccess extension</a>.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-design-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2006/06/23/akismet-worst-offenders-extension/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Date Image Hack</title>
		<link>http://www.bloggingpro.com/archives/2005/06/29/wordpress-date-image-hack/</link>
		<comments>http://www.bloggingpro.com/archives/2005/06/29/wordpress-date-image-hack/#comments</comments>
		<pubDate>Wed, 29 Jun 2005 22:56:35 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2005/06/29/wordpress-date-image-hack/</guid>
		<description><![CDATA[Here&#8217;s a short tutorial on using dynamic images to replace the date entries in your WordPress 1.5 blog. Get backlinks to your Blog! If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.yugatech.com/blog/?p=149">Here&#8217;s</a> a short tutorial on using dynamic images to replace the date entries in your WordPress 1.5 blog.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/promote_your_blog.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2005/06/29/wordpress-date-image-hack/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Multiply</title>
		<link>http://www.bloggingpro.com/archives/2005/06/10/wordpress-plugin-multiply/</link>
		<comments>http://www.bloggingpro.com/archives/2005/06/10/wordpress-plugin-multiply/#comments</comments>
		<pubDate>Fri, 10 Jun 2005 13:02:27 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2005/06/10/wordpress-plugin-multiply/</guid>
		<description><![CDATA[Multiply is a plugin for WordPress 1.5.x which allows multiple blogs from within the one administration interface. Includes one-click creation of new blogs, with per-blog user permissions, plugins, themes etc. Get backlinks to your Blog! If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://rephrase.net/days/05/05/wordpress-multiplied">Multiply</a> is a plugin for WordPress 1.5.x which allows multiple blogs from within the one administration interface. Includes one-click creation of new blogs, with per-blog user permissions, plugins, themes etc.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-social-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2005/06/10/wordpress-plugin-multiply/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Navigation Bar Hack</title>
		<link>http://www.bloggingpro.com/archives/2005/05/07/wordpress-navigation-bar-hack/</link>
		<comments>http://www.bloggingpro.com/archives/2005/05/07/wordpress-navigation-bar-hack/#comments</comments>
		<pubDate>Sat, 07 May 2005 19:34:45 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2005/05/07/wordpress-navigation-bar-hack/</guid>
		<description><![CDATA[This hack adds a top navigation bar to the default Kubrick theme. Get backlinks to your Blog! If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written [...]]]></description>
			<content:encoded><![CDATA[<p>This <a href="http://www.liewcf.com/blog/archives/2005/05/wordpress-navigation-bar/">hack</a> adds a top navigation bar to the default Kubrick theme.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-design-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2005/05/07/wordpress-navigation-bar-hack/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple Hit Counter</title>
		<link>http://www.bloggingpro.com/archives/2005/04/30/simple-hit-counter/</link>
		<comments>http://www.bloggingpro.com/archives/2005/04/30/simple-hit-counter/#comments</comments>
		<pubDate>Sat, 30 Apr 2005 15:02:49 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2005/04/30/simple-hit-counter/</guid>
		<description><![CDATA[This is a very simple hit counter that counts unique IP addresses and displays the total count on your page somewhere. This process requires you to create your own MySQL table so be aware. Get backlinks to your Blog! If you are looking to promote your blog and get high quality backlinks from a PR6 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://scyth.info/wp-counter">This</a> is a very simple hit counter that counts unique IP addresses and displays the total count on your page somewhere.  This process requires you to create your own MySQL table so be aware.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/promote_your_blog.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2005/04/30/simple-hit-counter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Hack amd Tutorial: Creating A Dynamic Sticky</title>
		<link>http://www.bloggingpro.com/archives/2005/04/25/wordpress-hack-amd-tutorial-creating-a-dynamic-sticky/</link>
		<comments>http://www.bloggingpro.com/archives/2005/04/25/wordpress-hack-amd-tutorial-creating-a-dynamic-sticky/#comments</comments>
		<pubDate>Mon, 25 Apr 2005 13:15:36 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://www.bloggingpro.com/archives/2005/04/25/wordpress-hack-amd-tutorial-creating-a-dynamic-sticky/</guid>
		<description><![CDATA[Have you ever needed to have certain articles stay at the top of your blog longer than others? Sometimes the good stuff you write gets bogged down and indistinguishable from the other stuff. This WordPress hack and tutorial shows you how to focus your front page to feature the good stuff, but not loose all [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever needed to have certain articles stay at the top of your blog longer than others? Sometimes the good stuff you write gets bogged down and indistinguishable from the other stuff. This  <a href="http://www.maxpower.ca/wordpress-hack-creating-a-dynamic-sticky/2005/04/23/">WordPress hack and tutorial</a> shows you how to focus your front page to feature the good stuff, but not loose all the other stuff too.</p>

<div id="oio-banner-9" style="width:560px; float:left;">
<h2 class="widgettitle"><a href="http://www.blogsearchengine.com/submit-blog/" title="Promote Your Blog">Get backlinks to your Blog!</a></h2>	

<p><a href="http://www.blogsearchengine.com/submit-blog/"><img src="http://splashpress.com/ads/blogsearchengine-banners-design-300.jpg" alt="Promote Your Blog" width="250" /></a></p>
<p>If you are looking to promote your blog and get high quality backlinks from a PR6 2003 domain then Blogsearchengine.com is for you. For as little as $14.99 you can submit your blog and have a review written and published there with a backlink to your website or blog, we accept all niche!</p>
</div>
<hr class="oio-clear-left" />
]]></content:encoded>
			<wfw:commentRss>http://www.bloggingpro.com/archives/2005/04/25/wordpress-hack-amd-tutorial-creating-a-dynamic-sticky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

