Archive for June, 2010

You’re not blogging for YOU, you’re blogging for THEM!

268/365 - Default StateIt’s a common mistake, and a common question:

Nikki, I find it really hard to blog – I’m running out of things to say about my business!

When you start a blog you’re usually all gung-ho – you’ll blog every…

SEO With Google Webmaster Tools – Part 1: Setting Up a Site

by Stoney deGeyter

Many people are afraid of Google’s seemingly “big brother” approach to the web. Google appears to keep digging their hands further and further into our lives, collecting data and using in ways that some may not trust…

WordPress hack: Remove admin name in comments class

This code simply have to be pasted in your functions.php file to work:

function remove_comment_author_class( $classes ) {
	foreach( $classes as $key => $class ) {
		if(strstr($class, "comment-author-")) {
			unset( $classes[$key] );
		}
	}
	return $classes;
}
add_filter( 'comment_class' ,