Tag Archives: wordpress
Avatars or Gravatars for WordPress

Avatars or Gravatars for WordPress

Add More Default Avatar Choices to the WordPress Admin. Add the following code in the functions.php :
// Add More Default Avatars to Options
if (!function_exists(’ss_addgravatar’)) {
function ss_addgravatar($avatar_defaults) {
$myavatar1 = get_bloginfo(‘template_directory’).’/images/avator/01.png’;
$avatar_defaults[$myavatar1] = ‘rock’;
$myavatar2 = get_bloginfo(‘template_directory’).’/images/avator/02.png’;
$avatar_defaults[$myavatar2] = ‘Cool’;
$myavatar3 = get_bloginfo(‘template_directory’).’/images/avator/03.png’;
$avatar_defaults[$myavatar3] = ‘Geek’;
$myavatar4 = get_bloginfo(‘template_directory’).’/images/avator/04.png’;
$avatar_defaults[$myavatar4] = ‘Pretty’;
return $avatar_defaults;
$myavatar5 = get_bloginfo(‘template_directory’).’/images/avator/05.png’;
$avatar_defaults[$myavatar5] = ‘Sexy’;
return $avatar_defaults;
}
add_filter(‘avatar_defaults’, ’ss_addgravatar’);
}

If you want to get your [...]

Read more
Wordpress 2.9

Wordpress 2.9

After the security lot of security release in WordPress 2.8. Today (December 19, 2009) WordPress released it’s new and awaited WordPress version 2.9 “Carmen” named in honor of magical jazz vocalist Carmen McRae (whom we’ve added to our Last.fm WP release station). You can upgrade easily from your Dashboard by going to Tools > Upgrade, [...]

Read more
WordPress Security Tips

WordPress Security Tips

Posted on: September 5, 2009
Updates on: December 15, 2009
As the WordPress is getting popular and used by many people, now the hackers are also being active and involved in hacking wordpress site. I have recently received lot of request to fix the WordPress hacks. I would like to list some WordPress Security Tips to help [...]

Read more
MaxRef Widget Plugin Version 1.9.6 for WordPress

MaxRef Widget Plugin Version 1.9.6 for WordPress

MaxRef Plugin Version 1.9.6 is now ready for download and use in your WordPress sites. You can install and use this plugin in WordPress version above 2.5 and above.  I have tested this plugin up to WordPress version 2.9 beta 2.
MaxRef Widgets is a powerful way to add unlimited widgets on your sidebars to display [...]

Read more
Wordpress Plugins: My Favorites

Wordpress Plugins: My Favorites

Published on: April 08, 2009
Last Updated on: December 07, 2009
I would like to list out some of top wordpress plugins that are my favorites: Plugins that are useful for Search Engine Optimization,  Photo Gallery, Forms, Maintenance, Rating, CMS, E-commerce, Security and Privacy, Cache, Backup, Others…

Read more
Page 1 of 41234