Tag Archive for 'wordpress'

My Current WordPress Plugins

Here is a list of WordPress plugins and run and why.

Technorati Tags: ,

Some Changes Under The Hood

Being the cutting edge type. I upgraded to WordPress 2.5 almost the next day it was released. It was too easy. I have this site on Dreamhost 1 click install and upgrade.

I paid the price. My old theme (a slightly modified version of K2) broke the WordPress admin dashboard.

I should have tested it locally but I thought I'd be daring. Only today I found the time to test things locally and deploy a decent working theme. By the way the search was broken before, I hope no one noticed ;)

Here is what happend. K2 is a highly advanced theme with support for a lot of plugins and has its own sidebar manager. WordPess has its own sidebar manager. (Not as sleek as K2's)

When I upgraded to WordPress 2.5 my old theme (K2 Release Candidate 4) broke the WordPress dashboard. I looked around quickly and found that K2 had fixed this in the main development branch. So now I moved to the last nightly snapshot of K2. K2 RC5 will be compatible with WordPress 2.5. Waiting for that.

Technorati Tags: ,

Improved Meta Description With WordPress

Google Webmaster tools was complaining that my content had duplicate meta descriptions. I found that it was always displaying the blog description on all the pages.

I found quite a few meta tag plugins but I settled for the Improved Meta Description Snippets plugin with a small modification.

I added this else block at line 119 In the improved-meta-description-snippets.php

 
else {
	echo '<meta name="description" content="' . get_bloginfo('description') . '" />';
}
 

That displays the default blog description on the home page. Then I removed the default meta description in the header.php in my current theme.

References:

How do I change my site's title and description?

Official Google Webmaster Central Blog: Improve snippets with a meta description makeover

Technorati Tags: , , , ,