The Default WordPress admin login screen has a default WordPress logo as below
1. All-in-One SEO Pack
Take control of your meta descriptions and page titles. You can also tag posts with categories. All-in-One SEO Pack is one of the most popular SEO-related plugins because of the essential functions it allows you to perform.
2. Ultimate Tag Warrior [..]
Adding a new avatar image to the default wordpress avatar called mystery man was always a new bloggers problem, Follow our tutorial and choose avatar which is more suitable to your theme.
Open your theme’s functions.php file and add this new function.
add_filter( 'avatar_defaults', 'newgravatar' );
function newgravatar ($avatar_defaults) {
$myavatar = get_bloginfo('template_directory') . '/images/my-gravatar.jpg';
$avatar_defaults[$myavatar] = "My Avatar";
return $avatar_defaults;
}
We are done. Using the add_filter function we changed the avat_default function a little bit, with newgravatar function. We added our new avatar in default wordpress avatar list. Change my-gravatar.jpg with your own. This file must be located in /images/ folder of your theme. [..]
Twitter has exploded in popularity over the past year as many mainstream media sources have been using the service to communicate with their readers/viewers, but did you know that bloggers can now use Twitter to promote their content as well?
While searching for a WordPress plugin that could automatically publish my blog posts on Twitter, I was thrilled to discover the WordTwit WordPress plugin. [..]
Adding FeedBurner Email to your WordPress.com blog : If you’re using WordPress.com to publish your blog, you will not be able to add the subscription form for FeedBurner Email Subscriptions service to your sidebar. But We have a way you can offer email subscriptions to your biggest fans by placing a simple “Get {Your Site Here} delivered by email” link in your WordPress.com blog sidebar instead of the standard form. [..]