Build Internet has a brand new theme, and that's only the beginning. Read the full story or hide this bar

How to Change the Default Gravatar in WordPress

As much as I love seeing the mystery man appear in WordPress comments across the internet, your blog deserves better. In this tutorial we’ll take a custom image and add it as the default gravatar to give your comment section a more personalized touch.


The Goal

If you still haven’t been acquainted with the mystery man icon, here’s a short introduction:

Meet the Mystery Man

Now that you’ve been properly introduced, let’s get rid of him. We’ll do this by adding more options for defaults. The solution in this example is much more elegant than simply replacing the default image. The result will be much more customized and will give you options straight from the WordPress 2.7 dashboard under Settings>Discussion.

Gravatar Selection


Gravatar Code for functions.php

Each WordPress theme has the option of including functions.php. This file is responsible for loading any additional options for the theme in the WordPress dashboard. The default Kubrick theme for instance, would use functions.php to change the header colors. We’ll be using it to specify a brand new avatar for use with the current theme. Start by opening up the functions.php file in your theme directory. If you do not see one, make it now. Depending on your current theme, there may already be some code involved. Ignore it, our code will be independent from the rest of the code.

add_filter( 'avatar_defaults', 'newgravatar' );

function newgravatar ($avatar_defaults) {
    $myavatar = get_bloginfo('template_directory') . '/images/buildinternet-gravatar.jpg';
    $avatar_defaults[$myavatar] = "Build Internet";
    return $avatar_defaults;
}

It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

  1. The add_filter function says that we’ll be editing the avatar_defaults array using our custom function “newgravatar
  2. The newgravatar function is responsible for providing the location and title of our additional gravatar option
  3. The first line in the function points to the new gravatar in the images folder of the template directory
  4. The second line designates the name that will be displayed next to the image dashboard options.
  5. The third line sends back the results to the avatar_defaults array to be included in the theme

Goodbye Mystery Man

It’s easy to add or change existing gravatars using this snippet of code. If you’re looking to have a couple options at once, simply duplicate the lines in the function with “$myavatar” and then rename the variable. Now there is absolutely no excuse for letting the Mystery Man into your comment section ever again. He’s had a good run, but his retirement is long overdue.

Wordpress.com stats not installed! Posted Thursday, February 19th, 2009 / Back to Top

I this post. Tweet
SPONSOR

116 Comments 3 Mentions

  1. Andrew Houle Author Editor

    Nice tip Zach! I will definitely be customizing this in my redesign. Bookmarked!

    February 19, 2009 · Reply

    • Zach Dunn Author Editor

      @Andrew

      Haha, you’d think I would have noticed you’re still representing the mystery man community by now! In any case, glad to be of help!

      February 19, 2009 · Reply

  2. joyoge designers’ bookmark Author Editor

    nice tip thanks a lot..

    February 20, 2009 · Reply

  3. whatever Author Editor

    Nice to see this tip spread across the net ;-) I discovered this here a month ago and it’s still working great. HowTo: Set A Custom Gravatar Image In WordPress 2.7

    This is also very handy for theme developers to raise usability of their theme. So nice you mention it here. Would love to see this more in use.

    February 21, 2009 · Reply

  4. Amanda Author Editor

    Dude, you rock! Thanks so much, exactly what I was looking for. :) See it live on my blog. :)

    P.S. I *much* prefer the clean white background of your site. ;)

    March 6, 2009 · Reply

  5. Sander Author Editor

    Sorry, off-topic question, but what is the font used in the picture? I really like it!

    March 8, 2009 · Reply

  6. chibi Author Editor

    Thank you so much :) Just what I needed!

    chibi’s last blog post..#4 Moon Crisis Make-Up!

    April 18, 2009 · Reply

    • pisir Author Editor

      yemek tarifleri yemek pişir

      March 22, 2012 · Reply

  7. Ydwer Author Editor

    Hi, I tried to implement the code above in my functions.php. But after uploading it on my ftp I get a blank screen on my wp-admin.

    What am I doing wrong?

    Ydwer’s last blog post..Dit is een testbericht

    April 21, 2009 · Reply

  8. Ydwer Author Editor

    I just figured it out. I added some new around the code and that cause the problem.

    Cheers, great code!

    Ydwer’s last blog post..Dit is een testbericht

    April 21, 2009 · Reply

  9. Luc Latulippe Author Editor

    Sweet! Thanks!

    April 29, 2009 · Reply

  10. Frank Author Editor

    Thanks, works perfectly.
    .-= Frank´s last blog ..140Ware opens up Alpha Invites for Tweetboard =-.

    June 29, 2009 · Reply

  11. themeheven Author Editor

    Nice works Thanks!
    .-= themeheven´s last blog ..Optimizing PNG for the web =-.

    July 20, 2009 · Reply

  12. m7zhao Author Editor

    Awesome, just what I was looking for! Thanks!

    July 22, 2009 · Reply

  13. Mike Author Editor

    Great it works !

    Greetz from a happy belgium guy who isn’t a mystery anymore ;)

    August 14, 2009 · Reply

  14. oron mizrachi Author Editor

    very cool and informative tutorial!! 10x

    August 15, 2009 · Reply

  15. clickfire Author Editor

    Very easy and worked perfect for me, thanks.
    .-= clickfire´s last blog ..Twitter Spam Attack =-.

    August 21, 2009 · Reply

  16. subcorpus Author Editor

    thanks for the tip … appreciated …
    .-= subcorpus´s last blog ..The big cat roars in … =-.

    September 8, 2009 · Reply

  17. Harsh Agrawal Author Editor

    Cool ..Thanks..I always change the default icon to something fancy, though adding one of your own is great advice. :)
    .-= Harsh Agrawal´s last blog ..Difference Between Free WordPress and Self Hosted WordPress Blog =-.

    September 13, 2009 · Reply

  18. Jason Saggers Author Editor

    Thanks for this, it works perfectly.
    Now if only I was good at creating a custom avatar.
    Great site by the way.

    September 16, 2009 · Reply

  19. Alex. Author Editor

    I made the change as suggested. But it change the gravatar for all users. How do I change single user profile. In the user profile there is no gravatar selection of custom name field.
    Thanks in advance

    October 2, 2009 · Reply

  20. bob smith Author Editor

    Doesn’t work for WordPress 2.8.4….there is no such code in the functions.php anymore – so now what?

    October 7, 2009 · Reply

    • Zach Dunn Author Editor

      @bob

      The code in this tutorial was never available by default on any WordPress version. As evidence by this blog, you can get it working in WordPress 2.8.4, but you’re going to have to put the code into the functions.php file (or create one from scratch).

      October 7, 2009 · Reply

  21. Cenk Author Editor

    Check:

    http://codex.wordpress.org/Using_Gravatars#How_a_Gravatar_is_Constructed

    &default=http%3A%2F%2Fwww.somesite.com%2Fsomeimage.jpg

    So, it can be done right into wordpress now :-)

    October 15, 2009 · Reply

  22. ezhil Author Editor

    simple and easy way to bring gravatar in your comments http://flexlearner.wordpress.com/2009/12/17/how-to-add-gravatar-to-your-wordpress-comments/ it just took me 5 minutes to do that.

    December 17, 2009 · Reply

  23. zplits | what’s the latest? Author Editor

    Hi there, i’m having problems with the steps that you provide. I have followed it, but when i view it in mozilla firefox it doesn’t show up, but in google chrome and ie it works.

    Am i missing something?

    December 29, 2009 · Reply

  24. Rednights Author Editor

    Worked like a charm! Thanks for the code. Now only if pushing the footer all the way to the bottom codes worked just as easily =(

    January 4, 2010 · Reply

  25. deegee Author Editor

    Awesome content, im a newbie for a wp blogger thx 4 the tutorial

    January 6, 2010 · Reply

  26. Ewan Author Editor

    Just what the mad doctor ordered!

    Thx,
    E

    January 7, 2010 · Reply

  27. Kevin Oh! Author Editor

    Perf. Worked absolutely perfectly.

    Thank you!

    January 8, 2010 · Reply

  28. lawrence77 Author Editor

    wow, thanks…

    January 9, 2010 · Reply

  29. abhi Author Editor

    Thanks for this. It solved my problem. Cheers :)

    January 25, 2010 · Reply

  30. Sam Author Editor

    Thanks for this tip. Haven’t done it yet, but it seems simple enough.

    Here’s another question. Hope you do not mind.

    How do I get my gravatar to default to the left side of my comments instead of the right? Just looks so much better and appropriate on the left.

    Thanks

    February 3, 2010 · Reply

    • Zach Dunn Author Editor

      @Sam

      Just use some CSS to float the image to the left. That should do it just fine!

      February 3, 2010 · Reply

  31. sushilshirbhate Author Editor

    nice tip thanks a lot..

    February 25, 2010 · Reply

  32. Patience Author Editor

    Thanks worked great!

    March 5, 2010 · Reply

  33. Cold Crush Author Editor

    Hi, it didn’t quite work for me — it still seems to be querying the gravatar server, instead of my custom icon it shows a broken link style image with a question mark, and the url instead of being from my own blog is showing up as a gravatar URL with a whole bunch of garbled junk after

    March 16, 2010 · Reply

  34. Cold Crush Author Editor

    instead of

    March 16, 2010 · Reply

  35. Cold Crush Author Editor

    Ok nevermind I worked it out haha. Thanks for the tutorial!

    March 16, 2010 · Reply

  36. Joseph Hinson Author Editor

    I had bookmarked this and just used this to change the avatars for my daughter’s blog. This is one bit I’ll use again and again I’m sure.

    Thanks Zach

    April 23, 2010 · Reply

  37. Online Travel Course Author Editor

    I am a corporate trainer, currently working on an online travel process, I visited your blog, its really nice and I got lot of knowledge from it. I want to say thanks…

    May 3, 2010 · Reply

  38. The Conscious Life Author Editor

    I was looking for a way to swap the Mystery Man without having to tinker with the codes in comment.php. This is just what I needed. Thank you for the simple but elegant solution!

    May 11, 2010 · Reply

  39. Ahsan Idrisi Author Editor

    thanks a lot for this tutorial, i really wanted to do that, and i have succeeded.

    May 15, 2010 · Reply

  40. subkh4n Author Editor

    can i use gravatar in other theme in this site

    May 31, 2010 · Reply

  41. Pascal Author Editor

    I’ll try this trick. For now, i have some difficulties to integrate the gravatar with the comments. Hoping this guideline will help me! Thx

    June 12, 2010 · Reply

  42. Cindy Author Editor

    Hi.. I just signed up to Gravatar and uploaded an image there… about this code I’m going to paste in functions.php, which part of the code should I paste it in? Cause I’m getting an error in my admin page. By the way I’m using wordpress and I’m fairly new.. Thanks :)

    June 16, 2010 · Reply

  43. Cindy Author Editor

    oh nevermind.. it works.. yay! :)

    June 16, 2010 · Reply

  44. HelmetID Author Editor

    Thanks! That made it very easy. I was sick of seeing that dude too.

    July 12, 2010 · Reply

  45. Victor Alexander Author Editor

    I keep trying this out but it’s not working. When I add your bit of code into my functions.php file I just get a blank page loaded when I attempt to load my blog or the admin page. Any suggestions? I’m placing it between the brackets.

    July 26, 2010 · Reply

  46. Arash Author Editor

    Thank you for the code.

    How can you get rid of the link to gravatar in the image src=, before the local gravat is displayed?

    I see that your blog does not have it.

    August 24, 2010 · Reply

  47. Arash Author Editor

    I see that you site also has it, just not the “Get a Gravatar” part.

    The problem with the src= still getting the gravatar link is that is causes unnecessary load for the page and and additional redirect.

    August 24, 2010 · Reply

  48. SSG Author Editor

    Doesn’t work. Either shows code on the page or the admin goes blank.

    August 25, 2010 · Reply

  49. Clare Author Editor

    Worked a treat thanks – I searched high and wide to find the instructions. My image didn’t show up on the dash but it does show up on the comments and that’s all that matters :)

    August 29, 2010 · Reply

  50. Andrea-Michael Author Editor

    Hi, Thanks for the help. Great post.

    Thanks,
    Michael

    August 29, 2010 · Reply

  51. Resim Paylas Author Editor

    I like to post this comment .It helps a lot.The one thing I do know for sure, if that day comes, is that when it’s wedding cake cutting time, I will NOT make the same mistake I witness at every wedding. I will not be serving Champagne with dessert, but rather the slightly sweet and fizzy dessert wine,..

    Thanks and Regards

    September 21, 2010 · Reply

  52. Netkrali Author Editor

    Videos Site….

    September 21, 2010 · Reply

  53. Quintin Author Editor

    Hi guys… great tip! Thanks.

    I’m wondering, though. Doing this still means that you have to make a call to Gravatar.com for each avatar.

    Shouldn’t it be possible to use the get_avatar() function and replace the default avatar with one hosted on your own domain?

    October 10, 2010 · Reply

  54. flash oyun Author Editor

    thansk admın

    October 14, 2010 · Reply

  55. sean steezy Author Editor

    thanks, way too easy!

    October 29, 2010 · Reply

  56. Rajeev Author Editor

    Thanks For The Tutorial.
    Works Like A Charm.

    November 8, 2010 · Reply

  57. Adam Garcia Author Editor

    I am interested to know if this will work for the WP 3.01?

    November 9, 2010 · Reply

  58. Reqz Author Editor

    I think Gravatar.com is also a great way to personalize your gravatar for your blog comment. And you offer a great tip for blog owners to change the default Gravatar!

    December 1, 2010 · Reply

  59. Tim Gengler Author Editor

    Thank you for the tip, this worked flawlessly.

    December 16, 2010 · Reply

  60. Katie @ Women Magazie Author Editor

    Thanks for posting this article, i was fed up with the mystery man default avatar on my blog. I am wondering if this function can be used to create custom avatars as well. Thinking about changing avatars based on holiday seasons.

    January 3, 2011 · Reply

  61. Cindy Author Editor

    WARNING… DO NOT DO THIS!

    It did not work for me and in fact disabled my website, which I’ve worked VERY hard on.

    It apparently does not work with all themes.

    January 7, 2011 · Reply

    • Zach Dunn Author Editor

      If your page didn’t load after doing this, it’s likely that you have some open PHP tags or missing semi-colons. I would check that first, and try turning PHP error display on when you do it. Sorry to hear you had trouble, but most PHP errors aren’t as devastating as they might seem at first!

      January 9, 2011 · Reply

      • THE-KIT Author Editor

        This is correct. This code worked in our attempt, second try. The key is to nest it in your functions.php where it will not conflict with the other grouped php functions.

        We must recommend that you make pre-edit copies before any additions to the structure/code of a php file. That way if anything goes wrong you can always reference back to your master copy and start at it again until you get it right.

        You’re warning should be a little lighter – and more specific. Don’t do what you did – is a correct version, and one that others can benefit from instead of being stricken with an additional whiff of the anxiety already associated with coding a website you care for.

        January 23, 2011 ·

  62. Cindy Author Editor

    I fixed the problem, but it mean removing the code from the backend of the system as I could not even get into the dashboard via wp-admin

    January 7, 2011 · Reply

  63. Aaron Author Editor

    Hello,

    I will use (php) and (/php) for open and close php tags.

    My company has over 200 employees, and I want to give them each an avitar to begin with. I am also using user photo, so if they want to they can change their avitar.

    In my author.php page I have been able to link to the images by inserting

    so I have tried using your code but instead of ‘/images/buildinternet-gravatar.jpg’ I have added ../../../blogs.dir/1/images/(php)the_author_meta( ‘user_login’ )(/php).jpg.

    The problem is that it is come up with a syntax error, do you know what I am doing wrong?

    Thanks,

    Aaron

    January 13, 2011 · Reply

  64. bimmerguy Author Editor

    Thanks for the tip, ill use this in my blog.

    January 15, 2011 · Reply

  65. Dania G. Author Editor

    Worked perfectly! Thank you very much for the tip :)

    January 27, 2011 · Reply

  66. Nancy Author Editor

    I have no idea what I’m doing wrong. I’ve installed the code, changed the image file name to ngpavatar.jpg, uploaded it to the images folder within the theme 2010Weaver folder and nothing happens. My site loads fine but no new avatar. What folder do I upload the actual image to?

    I think I’ve uploaded it now to every folder named ‘images’ I have! Thank you :-/

    February 5, 2011 · Reply

  67. Nancy Author Editor

    Still trying – I think maybe my problem is the substitution of ‘template directory’??

    The image folder that the gravatar jpg is located is inside the 2010-weaver folder which is inside the themes folder…so that line of my code looks like this within functions.php

    $myavatar = get_bloginfo(‘themes/2010-weaver’) . ‘/images/ngpgravatar.jpg’;

    I’ve tried just using ‘themes’ and I’ve tried just using ’2010-weaver’. Neither work :(

    February 5, 2011 · Reply

    • Zach Dunn Author Editor

      Don’t enter your own path. Just leave it as literally “get_bloginfo(‘template_directory’)” and you should be fine.

      February 7, 2011 · Reply

  68. Louis Gubitosi Author Editor

    thanks for this tip. I used this on my site and the default avatar is showing up in the comments section but not in the “Recent Comments” side bar. I’m using the “Get Recent Comments” plugin. Is this treated differently?

    http://interactiveblend.com/blog

    February 15, 2011 · Reply

  69. Paul Cotton Author Editor

    Great idea and kind of works for me. I have done as stated above and it had changed the logo in the backend pages (wp-admin) and also i see my logo in the top left corner when im logged in.
    The problem im having it has not updated posts that have been made on my feedback page, see http://www.e2ki.co.uk/feedback as its still showing the old avatar. Any ideas guys as i have come to a dead end.

    Cheers

    March 9, 2011 · Reply

  70. Synz Author Editor

    Great post! I will definitely try this. *Thanks! :)

    March 28, 2011 · Reply

  71. Rusell Author Editor

    Thank you, loooots of usefull information that helped me in doing wordpress theme.

    March 29, 2011 · Reply

    • desdan Author Editor

      porno izle porno izle
      admınnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn

      April 21, 2011 · Reply

  72. Dallas Author Editor

    Awesome Zach, thanks!

    One thing, you may want to point out that it would be better to use ‘stylesheet_directory’ instead of ‘template_directory’. I’m using a child theme so had to make that small tweak, but it may not be obvious to others who want to just copy and paste. Thanks though, works like a charm! Sometimes it’s the little pieces of code that can pull a project together.

    Dallas

    April 26, 2011 · Reply

  73. Resim paylas Author Editor

    resim paylas resim yükle türk ünlü frikik resimleri paylas resim indir resim yükle thanks admin

    May 21, 2011 · Reply

  74. yash Author Editor

    how to add “create gravatar link” to profile pic wordpress

    for example see here “http://ottopress.com/wordpress-plugins/simple-facebook-connect/#comments”

    May 30, 2011 · Reply

  75. resim paylas Author Editor

    12 Awesome Resources For Design and Copy | My Copywriting Secret

    resim paylas resim yükle resim yükle

    June 11, 2011 · Reply

  76. Stephanie Author Editor

    This is a cool idea

    June 19, 2011 · Reply

  77. Goddess of Answers Author Editor

    For some reason the user photos show up in the dashboard but in the comments section the mystery man is there.. Anyone know how to fix this?

    July 4, 2011 · Reply

    • poli Author Editor

      i have a same problem, plz help

      December 14, 2011 · Reply

  78. Gautam Doddamani Author Editor

    thanx for this awesome tutorial! :)

    July 16, 2011 · Reply

  79. andy Author Editor

    nice info

    September 12, 2011 · Reply

  80. engineering dude Author Editor

    Way to go man! This worked great on WordPress 3.2.1. Thank you!

    October 19, 2011 · Reply

  81. ikp Author Editor

    This is what I got when I tried your CODE! Parse error: syntax error, unexpected $end in /data/18/0/0/116/326442/user/332545/htdocs/events/wp-content/themes/theme1329/functions.php on line 107

    I need help fast

    November 13, 2011 · Reply

    • Zach Dunn Author Editor

      Please email zach@buildinternet.com when you get a chance. I suspect you have open tags or something along those lines.

      November 14, 2011 · Reply

    • Naresh Author Editor

      just delete the added code using http://ftp….

      LOL i had the same problem…….

      Your code sucks………

      November 29, 2011 · Reply

  82. Chris Author Editor

    Thanks for this! Really helpful and simple to follow.

    December 12, 2011 · Reply

  83. Keith D Mains Author Editor

    May I please ask…
    Does this mean that anyone without a gravatar would display as a custom one and that the site author would still be able to use their own and that those with gravatars have theirs displayed as normal?

    Also does this work with the latest WP as of Dec 14th 2011?

    Quite an update we had recently I noticed RE WP backend and functions with latest update

    December 14, 2011 · Reply

  84. Murray Author Editor

    So simple yet so effective!! Thanks mate!

    February 9, 2012 · Reply

  85. osama Author Editor

    Sorry i m totally newbie.
    when i pasted the code i saw no changes
    i want to put my own avatar

    March 4, 2012 · Reply

  86. Keith Author Editor

    Thanks for the code. Works a treat. Good work fella!

    May 6, 2012 · Reply

  87. Raj Author Editor

    what will happen when we upgrade to the latest version, will these setting last..?

    May 21, 2012 · Reply

  88. ship Author Editor

    On my site

    My comment to my blog all have the same gravatar the “G”, not my cool boat. Any thoughts

    June 13, 2012 · Reply

  89. Marshmalo Author Editor

    I visited your blog, its really nice and I got lot of knowledge from it.Hoping this guideline will help me! Thx

    July 12, 2012 · Reply

  90. Wil Author Editor

    That was WAY easier than fiddling with a plugin! Thank you Zach!

    July 16, 2012 · Reply

  91. indra putra bungsu Author Editor

    It is this information that I was looking for. Thank you for gravatar code that you provide. love to get to know you. and I will be a frequent visitor to your site.

    July 25, 2012 · Reply

  92. sfdsfsdfsdgsdgsdg Author Editor

    sadasdddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd

    August 29, 2012 · Reply

  93. sfdsfsdfsdgsdgsdg Author Editor

    sadaaaaaaasdasasddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd

    August 29, 2012 · Reply

  94. sfdsfsdfsdgsdgsdg Author Editor

    asdddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd wouy make captcha atuhhhh……

    August 29, 2012 · Reply

  95. sfdsfsdfsdgsdgasdasdasdasd Author Editor

    Aduh ieu website teu make captcha…….
    asdddddddddddddddddddddddddddddddd

    August 29, 2012 · Reply

  96. sfdsfsdfsdgsdgasdasdasdasd Author Editor

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    August 29, 2012 · Reply

  97. sfdsfsdfsdgsdgasdasdasdasd Author Editor

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    August 29, 2012 · Reply

  98. sfdsfsdfsdgsdgasdasdasdasd Author Editor

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:

    It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actually a relatively simple function. You’ll only need to change the image location and avatar title to your own needs. For those interested in the full process, here’s a more specific breakdown of what’s going on:It’s actu

    August 29, 2012 · Reply

  99. vipul Author Editor

    Its a great post.recently applied .very helpful.

    October 17, 2012 · Reply

  100. Istiaque Author Editor

    Good blog post. Thanks for sharing.

    December 14, 2012 · Reply

  101. Jude Author Editor

    I tried using your method, and here is what happened…

    Upon hitting “Update File” to add your code to the functions.php file, I received an Internal Server Error notification.

    I could navigate back in my browser to the php editor, and I have tried replacing the original code and resubmitting it, but I get the same result: “The website encountered an error while retrieving [URL]. It may be down for maintenance or configured incorrectly”. I can go even further back to previously navigated pages, but I cannot access any parts of the site that are not in my immediate browser history.

    The site is externally down as well as the entire admin control panel.

    Very confused…have you got any idea as to what might have happened? Many thanks in advance!

    January 23, 2013 · Reply

    • krystina Author Editor

      THE SAME THING HAPPENED TO ME – I JUST CRASHED MY SITE. ON THE PHONE WITH MY HOSTING COMPANY TO GET THE BACKUP FROM YESTERDAY RESTORED SO I DON’T HAVE TO REBUILD EVERYTHING FROM SCRATCH!

      my theory is that this does NOT work with the new worpress. PEOPLE be WARNED.

      March 26, 2013 · Reply

      • Carola Author Editor

        Always work with a copy via FTP to your hosting, rename the original xxx_old.php so you can always restore the original settings. That’s my free advice today!

        March 26, 2013 ·

  102. Carola Author Editor

    Hi,

    I’m using this code but get this warning:

    Warning: Cannot modify header information – headers already sent by (output started at /home/carolacl/public_html/wp/wp-content/themes/duster/functions.php:2) in /home/carolacl/public_html/wp/wp-includes/pluggable.php on line 876

    I’m using latest self hosted WP version and code seems OK, I pasted it in the very start of functions.php.

    Any help much appreciated!!

    Thank you

    March 22, 2013 · Reply

 

Join the Conversation

Back to Top / Comment RSS

2012 Build Internet. Created by One Mighty Roar. Icons by Komodo Media. Back to Top