<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>WP Engineer &#187; Avatar</title> <atom:link href="http://wpengineer.com/tag/avatar/feed/" rel="self" type="application/rss+xml" /><link>http://wpengineer.com</link> <description>WordPress News, Hacks, Tipps, Tutorials, Plugins and Themes</description> <lastBuildDate>Wed, 28 Jul 2010 13:37:05 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=8614</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Add Avatar To WordPress Default</title><link>http://wpengineer.com/add-avatar-to-wordpress-default/</link> <comments>http://wpengineer.com/add-avatar-to-wordpress-default/#comments</comments> <pubDate>Fri, 16 Jan 2009 18:24:12 +0000</pubDate> <dc:creator>Frank</dc:creator> <category><![CDATA[WordPress Hacks]]></category> <category><![CDATA[Avatar]]></category> <category><![CDATA[comments]]></category> <category><![CDATA[Gravatar]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Tutorials]]></category><guid
isPermaLink="false">http://wpengineer.com/?p=502</guid> <description><![CDATA[Avatars are popular as identification and with the service Gravatar it is largely used in the comment area of different applications. WordPress allows the user some basic settings. For example loading a default or generated Avatar, if the commentator doesn't have one. Various themes have a standard Avatar to match the design. But even here [...]]]></description> <content:encoded><![CDATA[<p>Avatars are popular as identification and with the service Gravatar it is largely used in the comment area of different applications.<br
/> WordPress allows the user some basic settings. For example loading a default or generated Avatar, if the commentator doesn't have one.<br
/> Various themes have a standard Avatar to match the design. But even here there is a nice solution via a hook, which enables to add an avatar in the list of your backend to make a selection quite simple. In the following I would like to show with a short and simple code snippet how to add 2 new avatars to the array of WordPress.</p><p><a
href="http://wpengineer.com/blog/wp-content/uploads/addavatar.png" class="liimagelink"><img
src="http://wpengineer.com/blog/wp-content/uploads/addavatar-300x256.png" alt="addavatar" title="addavatar" width="300" height="256" class="aligncenter size-medium wp-image-619" /></a></p><p>You have to add this little function to <code>functions.php</code> of your theme and it will add 2 Avatar from your folder <code>images</code> of your theme directory. I suggest, that the Avatars have a size of 60 pixel.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009933; font-style: italic;">/**
 * add a default-gravatar to options
 */</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'fb_addgravatar'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">function</span> fb_addgravatar<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$avatar_defaults</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$myavatar</span> <span style="color: #339933;">=</span> get_bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/images/avatar.gif'</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$avatar_defaults</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$myavatar</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'people'</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #000088;">$myavatar2</span> <span style="color: #339933;">=</span> get_bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/images/myavatar.png'</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$avatar_defaults</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$myavatar2</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'wpengineer.com'</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">return</span> <span style="color: #000088;">$avatar_defaults</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	add_filter<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'avatar_defaults'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'fb_addgravatar'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div><p>Is the theme active, you will have the 2 new Avatars available in your list.<br
/><hr
/><h3>Related posts:</h3><ul><li><a
href="http://wpengineer.com/gravatars-use-easy/" rel="bookmark" title="Permanent Link: Gravatars Use Easy" class="liinternal">Gravatars Use Easy</a></li><li><a
href="http://wpengineer.com/identify-authors-gravatars/" rel="bookmark" title="Permanent Link: Identify Authors With Gravatars" class="liinternal">Identify Authors With Gravatars</a></li><li><a
href="http://wpengineer.com/image-metadata-in-wordpress/" rel="bookmark" title="Permanent Link: Image Metadata in WordPress" class="liinternal">Image Metadata in WordPress</a></li><li><a
href="http://wpengineer.com/deactivate-wordpress-default-widgets/" rel="bookmark" title="Permanent Link: Deactivate WordPress Default Widgets" class="liinternal">Deactivate WordPress Default Widgets</a></li><li><a
href="http://wpengineer.com/puplishing-extend-of-wordpress/" rel="bookmark" title="Permanent Link: Publishing Extend of WordPress" class="liinternal">Publishing Extend of WordPress</a></li></ul><hr
/><p><img
style="float:left;" src="http://wpengineer.com/favicon.ico" alt="WP Engineer Favicon"/> Thanks for subscribing our feed! <a
href="http://buysellads.com/buy/detail/3646/" class="liexternal">Sponsor the WP Engineer Blog</a> and get your brand in front of several hundred users per day!<br
/> &copy; <a
href="http://wpengineer.com/" class="liinternal">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p> ]]></content:encoded> <wfw:commentRss>http://wpengineer.com/add-avatar-to-wordpress-default/feed/</wfw:commentRss> <slash:comments>37</slash:comments> </item> <item><title>Identify Authors With Gravatars</title><link>http://wpengineer.com/identify-authors-gravatars/</link> <comments>http://wpengineer.com/identify-authors-gravatars/#comments</comments> <pubDate>Wed, 14 Jan 2009 13:13:07 +0000</pubDate> <dc:creator>Frank</dc:creator> <category><![CDATA[WordPress Hacks]]></category> <category><![CDATA[Avatar]]></category> <category><![CDATA[Gravatar]]></category> <category><![CDATA[Theme]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Themes]]></category> <category><![CDATA[WordPress Tutorials]]></category><guid
isPermaLink="false">http://wpengineer.com/?p=505</guid> <description><![CDATA[Since WordPress version 2.5, it is easier to include the Gravatar of a comment author in the comments. WordPress offers a feature that is easy to use and it brings some parameters with. In order to use and how to include a Gravatar, I would refer to the article &#8222;Gravatar Use Easy&#8220;. But with this [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://wpengineer.com/blog/wp-content/uploads/ad516503a11cd5ca435acc9bb6523536.jpeg" alt="" title="ad516503a11cd5ca435acc9bb6523536" width="80" height="80" class="alignright size-full wp-image-504" /><br
/> Since WordPress version 2.5, it is easier to include the Gravatar of a comment author in the comments. WordPress offers a feature that is easy to use and it brings some parameters with. In order to use and how to include a Gravatar, I would refer to the article &#8222;<a
href="http://wpengineer.com/gravatars-use-easy/" class="liinternal">Gravatar Use Easy</a>&#8220;.</p><p>But with this feature you can do more. Magazine-style for blogs are currently in high demand and many blogs have a a couple of authors. Many times the blogs link and present the author of the respective contribution. WP offers a whole range of template tags to this functionality, <a
href="http://codex.wordpress.org/Template_Tags#Author_tags" class="liwp">check out Codex</a>.</p><p>Now it would be nice to give the author a face.<span
id="more-505"></span> You can do that with the Plugin &#8222;<a
href="http://horttcore.de/2008/02/02/extended-userprofil/" class="liexternal">Extended User Profile</a>&#8220; and enter more information in the backend of WordPress.</p><p>Alternatively you can load the Gravatar of the author. The Gravatar function <code>get_avatar()</code> works great in the loop of WP and you just have to assign the email address. It's easily done by the template tag <code>get_the_author_email()</code>.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$author</span> <span style="color: #339933;">=</span> get_the_author_email<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> get_avatar<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$author</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">80</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><p>This above code creates this:</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>img alt<span style="color: #339933;">=</span><span style="color: #0000ff;">''</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">'http://www.gravatar.com/avatar/md5-Schlüssel_des_gravatar?s=80&amp;amp;d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2Fmd5-Schlüssel_des_gravatar%3Fs%3D80&amp;amp;r=G'</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'avatar avatar-80'</span> height<span style="color: #339933;">=</span><span style="color: #0000ff;">'80'</span> width<span style="color: #339933;">=</span><span style="color: #0000ff;">'80'</span> <span style="color: #339933;">/&gt;</span></pre></div></div><p>Alternatively you can get the email directly, with any variables.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_avatar<span style="color: #009900;">&#40;</span> get_the_author_email<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">80</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><p>Use CSS to format, you can use the class <code>avatar</code>, which is also assigned to the comments. Simultaneously there is also a class, which is created in regard to the Gravatar size, for the above syntax it would be <code>avatar-80</code>. So it's possible to format the picture of the author with this class.<br
/><hr
/><h3>Related posts:</h3><ul><li><a
href="http://wpengineer.com/recents-drafts-all-authors/" rel="bookmark" title="Permanent Link: Recents Drafts All Authors" class="liinternal">Recents Drafts All Authors</a></li><li><a
href="http://wpengineer.com/gravatars-use-easy/" rel="bookmark" title="Permanent Link: Gravatars Use Easy" class="liinternal">Gravatars Use Easy</a></li><li><a
href="http://wpengineer.com/new-ideas-for-2010-now-its-your-turn/" rel="bookmark" title="Permanent Link: New Ideas For 2010? Now It&#8217;s Your Turn!" class="liinternal">New Ideas For 2010? Now It&#8217;s Your Turn!</a></li><li><a
href="http://wpengineer.com/list-all-users-in-wordpress/" rel="bookmark" title="Permanent Link: List All Users in WordPress" class="liinternal">List All Users in WordPress</a></li><li><a
href="http://wpengineer.com/wordpress-plugin-deinstall-data-automatically/" rel="bookmark" title="Permanent Link: WordPress Plugin Deinstall Data Automatically" class="liinternal">WordPress Plugin Deinstall Data Automatically</a></li></ul><hr
/><p><img
style="float:left;" src="http://wpengineer.com/favicon.ico" alt="WP Engineer Favicon"/> Thanks for subscribing our feed! <a
href="http://buysellads.com/buy/detail/3646/" class="liexternal">Sponsor the WP Engineer Blog</a> and get your brand in front of several hundred users per day!<br
/> &copy; <a
href="http://wpengineer.com/" class="liinternal">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p> ]]></content:encoded> <wfw:commentRss>http://wpengineer.com/identify-authors-gravatars/feed/</wfw:commentRss> <slash:comments>11</slash:comments> </item> <item><title>Gravatars Use Easy</title><link>http://wpengineer.com/gravatars-use-easy/</link> <comments>http://wpengineer.com/gravatars-use-easy/#comments</comments> <pubDate>Mon, 12 Jan 2009 18:09:46 +0000</pubDate> <dc:creator>Frank</dc:creator> <category><![CDATA[WordPress Hacks]]></category> <category><![CDATA[Avatar]]></category> <category><![CDATA[Comment]]></category> <category><![CDATA[Gravatar]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Themes]]></category><guid
isPermaLink="false">http://wpengineer.com/?p=507</guid> <description><![CDATA[Since version 2.5 of WordPress, Gravatar service is included in the core files. On one hand, you can use it to make the comment overview more nicely. But you can also integrate this function in your template and you don't have to use a Plugin. You just have to insert the following syntax and the [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://wpengineer.com/blog/wp-content/uploads/ad516503a11cd5ca435acc9bb6523536.jpeg" alt="" title="ad516503a11cd5ca435acc9bb6523536" width="80" height="80" class="alignright size-full wp-image-504" /><br
/> Since version 2.5 of WordPress, <a
href="http://en.gravatar.com/" class="liexternal">Gravatar service</a> is included in the core files. On one hand, you can use it to make the comment overview more nicely. But you can also integrate this function in your template and you don't have to use a Plugin.<br
/> <span
id="more-507"></span><br
/> You just have to insert the following syntax and the little pictures will be displayed in your comment area of your theme.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'get_avatar'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> get_avatar<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$comment</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><p>The function <code>get_avatar()</code> (<code>/wp-includes/pluggable.php</code>) has 3 parameters, so you can adjust it easily to your liking.</p><ul><li><code>$id_or_email</code> Mail address or ID of the users, commentators</li><li><code>$size</code> Size of the Gravatars in pixel</li><li><code>$default</code> Default image, if the user doesn't have a Gravatar yet</li></ul><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;">get_avatar<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$id_or_email</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'96'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$default</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span> <span style="color: #009900;">&#41;</span></pre></div></div><p>As default Gravatar it loads http://www.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536 , this is the icon for the email address unknown@gravatar.com (MD5 verschlüsselt: d516503a11cd5ca435acc9bb6523536). The default size is 96 Pixel. You just have to assign the first parameter or variable.</p><p>The output would look like this:</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>img alt<span style="color: #339933;">=</span><span style="color: #0000ff;">''</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">'http://www.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=96'</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'avatar avatar-96 avatar-default'</span> height<span style="color: #339933;">=</span><span style="color: #0000ff;">'96'</span> width<span style="color: #339933;">=</span><span style="color: #0000ff;">'96'</span> <span style="color: #339933;">/&gt;</span></pre></div></div><p>Thus you can adjust the design with the help of CSS. The class <code>avatar</code> is available. Also you can use the class for the size of the Gravatar: <code>avatar-size</code>. Varied formattings are possible.</p><h3>How to implement?</h3><p>Since many people asking how to implement it, here is a short instruction for non-PHPler.</p><p>The code has to be in <code>comments.php</code>, it displays the comments and comment form. Of course it can be different, but in most themes it will be like that.</p><p>The function has to be in every output of each comment, that means it has to be within the loop <code>&lt;?php foreach ($comments as $comment) : &gt;</code> .<br
/> Normally after the <code>li</code>, which displays every comment.</p><h4>Search:</h4><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;">  &lt;ol class=&quot;commentlist&quot;&gt;
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$comments</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
       &lt;li <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$oddcomment</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>id=&quot;comment-<span style="color: #000000; font-weight: bold;">&lt;?php</span> comment_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;</pre></div></div><h4>Replace:</h4><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;">  &lt;ol class=&quot;commentlist&quot;&gt;
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$comments</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
      &lt;li <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$oddcomment</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>id=&quot;comment-<span style="color: #000000; font-weight: bold;">&lt;?php</span> comment_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_avatar<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$comment</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">32</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><p>Some themes aren't using a list (<code>ol</code> or <code>ul</code>); the output gets create by <code>div</code>. The important thing is, it has to be in the loop.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$comments</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
. . .
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endforeach</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">/* end for each comment */</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><h4>Format via CSS</h4><p>The format could look like that. This syntax goes to the <code>style.css</code> of your used theme.</p><div
class="wp_syntax"><div
class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.commentlist</span> li <span style="color: #6666ff;">.avatar</span> <span style="color: #00AA00;">&#123;</span> 
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#eee</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
	<span style="color: #00AA00;">&#125;</span></pre></div></div><hr
/><h3>Related posts:</h3><ul><li><a
href="http://wpengineer.com/identify-authors-gravatars/" rel="bookmark" title="Permanent Link: Identify Authors With Gravatars" class="liinternal">Identify Authors With Gravatars</a></li><li><a
href="http://wpengineer.com/easy-way-for-advertisement-in-wordpress/" rel="bookmark" title="Permanent Link: Easy Way For Advertisement In WordPress" class="liinternal">Easy Way For Advertisement In WordPress</a></li><li><a
href="http://wpengineer.com/customize-your-wordpress-feeds/" rel="bookmark" title="Permanent Link: Customize Your WordPress-Feeds" class="liinternal">Customize Your WordPress-Feeds</a></li><li><a
href="http://wpengineer.com/change-the-wordpress-message/" rel="bookmark" title="Permanent Link: Change the WordPress Message" class="liinternal">Change the WordPress Message</a></li><li><a
href="http://wpengineer.com/disable-wordpress-feed/" rel="bookmark" title="Permanent Link: Disable WordPress Feed" class="liinternal">Disable WordPress Feed</a></li></ul><hr
/><p><img
style="float:left;" src="http://wpengineer.com/favicon.ico" alt="WP Engineer Favicon"/> Thanks for subscribing our feed! <a
href="http://buysellads.com/buy/detail/3646/" class="liexternal">Sponsor the WP Engineer Blog</a> and get your brand in front of several hundred users per day!<br
/> &copy; <a
href="http://wpengineer.com/" class="liinternal">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p> ]]></content:encoded> <wfw:commentRss>http://wpengineer.com/gravatars-use-easy/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Database Caching 25/52 queries in 0.123 seconds using disk
Object Caching 1013/1107 objects using disk

Served from: wpengineer.com @ 2010-07-29 13:24:05 -->